]> hydra-www.ietfng.org Git - gtetrinet/commitdiff
fixing again the key press signal mess, this time dedicated to french users :)
authorDaniel Carbonell Fraj <bocata@src.gnome.org>
Fri, 29 Aug 2003 11:33:35 +0000 (11:33 +0000)
committerDaniel Carbonell Fraj <bocata@src.gnome.org>
Fri, 29 Aug 2003 11:33:35 +0000 (11:33 +0000)
ChangeLog
src/gtetrinet.c

index e3936a29383ed6220edc36bbdcf42fa2811adce0..70c292fa1964eac09d48cecaafa3b52b04f3698a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-08-29  Dani Carbonell  <bocata@panete.net>
+
+       * src/gtetrinet.c (keypress): fixing the key press signal handling
+       code yet again :D Now the french users should be able to use the
+       default number keys.
+
 2003-08-29  Jordi Mallach  <jordi@sindominio.net>
 
        * NEWS: Add 0.7.4 items.
index 624c08b3c80018637076aa9da1c32f955cea7a15..564d77fb9b28c6bc47b02f29f6588f95e5a38b6a 100644 (file)
@@ -430,7 +430,7 @@ gint keypress (GtkWidget *widget, GdkEventKey *key)
       return TRUE;
     }
 
-    if ((key->state & (GDK_MOD1_MASK | GDK_CONTROL_MASK | GDK_SHIFT_MASK)) > 0)
+    if ((key->state & (GDK_MOD1_MASK | GDK_CONTROL_MASK)) > 0)
       return FALSE;
     
     if (game_area && ingame && (gdk_keyval_to_lower (key->keyval) == keys[K_GAMEMSG]))