Revision: 2256 http://geany.svn.sourceforge.net/geany/?rev=2256&view=rev Author: eht16 Date: 2008-02-13 08:08:47 -0800 (Wed, 13 Feb 2008)
Log Message: ----------- Fix checking wrong variable.
Modified Paths: -------------- trunk/src/keybindings.c
Modified: trunk/src/keybindings.c =================================================================== --- trunk/src/keybindings.c 2008-02-13 09:30:20 UTC (rev 2255) +++ trunk/src/keybindings.c 2008-02-13 16:08:47 UTC (rev 2256) @@ -733,7 +733,7 @@ { guint i, state, keyval;
- if (keyval == 0) + if (ev->keyval == 0) return FALSE;
keyval = ev->keyval;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.