summaryrefslogtreecommitdiffstats
path: root/graphics/gpaint/patches/22_fix_not_printable_string.patch
blob: 6e2b98734f2fd08cc0cd725b1305dddeea5e997b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Author: Ying-Chun Liu (PaulLiu) <grandpaul@gmail.com>
Description: Ignore non-printable characters on text input
Bug-Debian: http://bugs.debian.org/535217
Bug-Ubuntu: https://bugs.edge.launchpad.net/ubuntu/+source/gpaint/+bug/262648
Bug: https://savannah.gnu.org/bugs/?26923
Forwarded: https://savannah.gnu.org/patch/?7051

Index: b/src/text.c
===================================================================
--- a/src/text.c	2009-12-19 17:12:11.000000000 -0200
+++ b/src/text.c	2009-12-19 17:12:11.000000000 -0200
@@ -238,7 +238,9 @@
     }
     else if (keyevent->string)
     {
+      if (isprint(keyevent->string[0])) {
         g_string_append(text->textbuf, keyevent->string);
+      }
     }
     else if ((keyevent->keyval >= GDK_space) && (keyevent->keyval < GDK_Shift_L))
     {