Blind: Drop fullscreen mode

h/t Pere
This commit is contained in:
Bill Kendrick 2023-04-30 22:58:45 -07:00
parent e14992d8af
commit fa9a0c5955
2 changed files with 8 additions and 3 deletions

View file

@ -6,7 +6,7 @@ Copyright (c) 2002-2023
Various contributors (see below, and AUTHORS.txt) Various contributors (see below, and AUTHORS.txt)
https://tuxpaint.org/ https://tuxpaint.org/
2023.April.30 (0.9.30) 2023.May.1 (0.9.30)
* Improvements to Stamp tool: * Improvements to Stamp tool:
--------------------------- ---------------------------
* Avoid playing English descriptive sound for a stamp * Avoid playing English descriptive sound for a stamp
@ -93,6 +93,11 @@ https://tuxpaint.org/
* Mosaic (shaped) tools: more progress bar feedback. * Mosaic (shaped) tools: more progress bar feedback.
Bill Kendrick <bill@newbreedsoftware.com> Bill Kendrick <bill@newbreedsoftware.com>
* Blind: Remove entire-picture ("fullscreen") mode; it wasn't
particularly useful.
h/t Pere
Bill Kendrick <bill@newbreedsoftware.com>
* Other Improvements: * Other Improvements:
------------------- -------------------
* Word-wrap long button labels, for better readability. * Word-wrap long button labels, for better readability.

View file

@ -24,7 +24,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt) (See COPYING.txt)
Last updated: April 18, 2023 Last updated: May 1, 2023
*/ */
#include "tp_magic_api.h" #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) 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) Uint8 blind_accepted_sizes(magic_api * api ATTRIBUTE_UNUSED, int which ATTRIBUTE_UNUSED, int mode ATTRIBUTE_UNUSED)