Activate [un]groupmagictools option
This commit is contained in:
parent
4ad4bb59a2
commit
850b733f4b
5 changed files with 9 additions and 3 deletions
|
|
@ -6,7 +6,7 @@ Copyright (c) 2002-2024
|
|||
Various contributors (see below, and AUTHORS.txt)
|
||||
https://tuxpaint.org/
|
||||
|
||||
2024.April.8 (0.9.33)
|
||||
2024.April.10 (0.9.33)
|
||||
* New Magic Tools:
|
||||
----------------
|
||||
* WIP Specular Reflection: Draws a slightly blurred, wavy, and
|
||||
|
|
|
|||
|
|
@ -133,6 +133,8 @@ lang, MULTI(parsertmp_lang)
|
|||
locale, MULTI(parsertmp_locale)
|
||||
lockfile, POSBOOL(ok_to_use_lockfile)
|
||||
magiccontrols, NEGBOOL(disable_magic_controls)
|
||||
ungroupmagictools, POSBOOL(no_magic_groups)
|
||||
groupmagictools, NEGBOOL(no_magic_groups)
|
||||
magicsizes, NEGBOOL(disable_magic_sizes)
|
||||
shapecontrols, NEGBOOL(disable_shape_controls)
|
||||
mirrorstamps, POSBOOL(mirrorstamps)
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ struct cfginfo
|
|||
const char *disable_brushspacing;
|
||||
const char *disable_magic_controls;
|
||||
const char *disable_magic_sizes;
|
||||
const char *no_magic_groups;
|
||||
const char *disable_shape_controls;
|
||||
const char *disable_print;
|
||||
const char *disable_quit;
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
# Bill Kendrick <bill@newbreedsoftware.com>; https://tuxpaint.org/
|
||||
# Based on inkscape's completion file, by allali@univ-mlv.fr
|
||||
#
|
||||
# Last modified 2023-12-29
|
||||
# Last modified 2024-04-10
|
||||
#
|
||||
# $Id$
|
||||
|
||||
|
|
@ -65,6 +65,7 @@ _tuxpaint()
|
|||
--nostamprotation --stamprotation \
|
||||
--nomagiccontrols --magiccontrols \
|
||||
--nomagicsizes --magicsizes \
|
||||
--ungroupmagictools --groupmagictools \
|
||||
--noshapecontrols --shapecontrols \
|
||||
--notemplateexport --templateexport \
|
||||
--mirrorstamps --dontmirrorstamps \
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
(See COPYING.txt)
|
||||
|
||||
June 14, 2002 - April 8, 2024
|
||||
June 14, 2002 - April 10, 2024
|
||||
*/
|
||||
|
||||
#include "platform.h"
|
||||
|
|
@ -8113,6 +8113,7 @@ void show_usage(int exitcode)
|
|||
" [--nostampcontrols | --stampcontrols]\n"
|
||||
" [--nomagiccontrols | --magiccontrols]\n"
|
||||
" [--nomagicsizes | --magicsizes]\n"
|
||||
" [--ungroupmagictools | --groupmagictools]\n"
|
||||
" [--noshapecontrols | --shapecontrols]\n"
|
||||
" [--nolabel | --label]\n"
|
||||
" [--nobrushspacing | --brushspacing]\n"
|
||||
|
|
@ -28404,6 +28405,7 @@ static void setup_config(char *argv[])
|
|||
SETBOOL(disable_brushspacing);
|
||||
SETBOOL(disable_magic_controls);
|
||||
SETBOOL(disable_magic_sizes);
|
||||
SETBOOL(no_magic_groups);
|
||||
SETBOOL(disable_shape_controls);
|
||||
SETBOOL(disable_print);
|
||||
SETBOOL(disable_quit);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue