Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-release-src > by-pkgid > 5fbd1c906435ab2c7e1a79c07ace2aff > files > 5

gpaint-2-0.3.3-6mdv2010.1.src.rpm

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

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))
     {