From 659b786fe57a80d4fe2f045ada27c68412ba9801 Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Mon, 18 Jan 2021 22:00:05 -0800 Subject: [PATCH] Mention --buttonsize in manpage; tab completion --- src/manpage/tuxpaint.1 | 14 ++++++++++++-- src/tuxpaint-completion.bash | 5 +++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/src/manpage/tuxpaint.1 b/src/manpage/tuxpaint.1 index 72e9538ac..f728edc3e 100644 --- a/src/manpage/tuxpaint.1 +++ b/src/manpage/tuxpaint.1 @@ -1,5 +1,5 @@ -.\" tuxpaint.1 - 2021.01.13 -.TH TUXPAINT 1 "13 January 2021" "0.9.26" "Tux Paint" +.\" tuxpaint.1 - 2021.01.18 +.TH TUXPAINT 1 "18 January 2021" "0.9.26" "Tux Paint" .SH NAME tuxpaint -- "Tux Paint", a drawing program for young children. @@ -19,6 +19,8 @@ tuxpaint -- "Tux Paint", a drawing program for young children. .br [\-\-orient=portrait] .br +[\-\-buttonsize SIZE] +.br [\-\-startblank] .br [\-\-nosound] @@ -155,6 +157,8 @@ tuxpaint -- "Tux Paint", a drawing program for young children. .br [\-\-orient=landscape] .br +[\-\-buttonsize 48] +.br [\-\-startlast] .br [\-\-sound] @@ -296,6 +300,12 @@ change the WIDTH and HEIGHT values in the configuration file or on the command-line. (This is useful on devices where the screen can be rotated, e.g. tablet PCs.) +.TP 8 +.B \-\-buttonsize SIZE +Adjust the size of the buttons in \fITux Paint's\fP user interface, +between 24 and 192 pixels (48 is the default, and suitable for displays +with 96 to 120dpi pixel density). + .TP 8 .B \-\-nosound \-\-sound Disable or enable (default) sound. diff --git a/src/tuxpaint-completion.bash b/src/tuxpaint-completion.bash index a94de92d4..7e9583a63 100644 --- a/src/tuxpaint-completion.bash +++ b/src/tuxpaint-completion.bash @@ -3,7 +3,7 @@ # Bill Kendrick ; http://www.tuxpaint.org/ # Based on inkscape's completion file, by allali@univ-mlv.fr # -# Last modified 2020-08-15 +# Last modified 2021-01-18 # # $Id$ @@ -30,6 +30,7 @@ _tuxpaint() --native \ --disablescreensaver --allowscreensaver \ --orient=landscape --orient=portrait \ + --buttonsize \ -b --startblank --startlast \ --sound -q --nosound \ --stereo --nostereo \ @@ -99,7 +100,7 @@ _tuxpaint() # else # _filedir '@(ai|ani|bmp|cur|dia|eps|gif|ggr|ico|jpe|jpeg|jpg|pbm|pcx|pdf|pgm|png|ppm|pnm|ps|ras|sk|svg|svgz|targa|tga|tif|tiff|txt|wbmp|wmf|xbm|xpm)' # -# FIXME: Allwo tab completion to show options after --lang (though may need to add support for --lang= for that to work?) -bjk 2009.09.09 +# FIXME: Allow tab completion to show options after --lang (though may need to add support for --lang= for that to work?) -bjk 2009.09.09 fi }