2003-08-28 Jordi Mallach <jordi@sindominio.net>
* src/gtetrinet.c (keypress): Ignore K_GAMEMSG presses if the game
hasn't started, fixes Debian Bug#205658. Patch from
Benjamin Drieu <benj@debian.org>, thanks!
+2003-08-28 Jordi Mallach <jordi@sindominio.net>
+
+ * src/gtetrinet.c (keypress): Ignore K_GAMEMSG presses if the game
+ hasn't started, fixes Debian Bug#205658. Patch from
+ Benjamin Drieu <benj@debian.org>, thanks!
+
2003-08-20 Dani Carbonell <bocata@panete.net>
* src/fields.c (fields_page_new): Changed the cursor when the
if ((key->state & (GDK_MOD1_MASK | GDK_CONTROL_MASK | GDK_SHIFT_MASK)) > 0)
return FALSE;
- if (game_area && (gdk_keyval_to_lower (key->keyval) == keys[K_GAMEMSG]))
+ if (game_area && ingame && (gdk_keyval_to_lower (key->keyval) == keys[K_GAMEMSG]))
{
g_signal_handler_block (app, keypress_signal);
fields_gmsginputactivate (TRUE);