From fa9a0c5955c8d5c06750335f3e697652a7d63a85 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Sun, 30 Apr 2023 22:58:45 -0700 Subject: [PATCH] Blind: Drop fullscreen mode h/t Pere --- docs/CHANGES.txt | 7 ++++++- magic/src/blind.c | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/CHANGES.txt b/docs/CHANGES.txt index d989a79af..a1a3d5e18 100644 --- a/docs/CHANGES.txt +++ b/docs/CHANGES.txt @@ -6,7 +6,7 @@ Copyright (c) 2002-2023 Various contributors (see below, and AUTHORS.txt) https://tuxpaint.org/ -2023.April.30 (0.9.30) +2023.May.1 (0.9.30) * Improvements to Stamp tool: --------------------------- * Avoid playing English descriptive sound for a stamp @@ -93,6 +93,11 @@ https://tuxpaint.org/ * Mosaic (shaped) tools: more progress bar feedback. Bill Kendrick + * Blind: Remove entire-picture ("fullscreen") mode; it wasn't + particularly useful. + h/t Pere + Bill Kendrick + * Other Improvements: ------------------- * Word-wrap long button labels, for better readability. diff --git a/magic/src/blind.c b/magic/src/blind.c index 451cb3c2c..26a6880c7 100644 --- a/magic/src/blind.c +++ b/magic/src/blind.c @@ -24,7 +24,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA (See COPYING.txt) - Last updated: April 18, 2023 + Last updated: May 1, 2023 */ #include "tp_magic_api.h" @@ -325,7 +325,7 @@ void blind_switchout(magic_api * api ATTRIBUTE_UNUSED, int blind_modes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED) { - return (MODE_FULLSCREEN | MODE_PAINT); + return (MODE_PAINT); } Uint8 blind_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)