Author: PeterB Date: Fri Feb 8 15:26:48 2008 New Revision: 7840 URL: http://svn.gnome.org/viewvc/balsa?rev=7840&view=rev
Log: catch ctrl-G more often Modified: trunk/ChangeLog trunk/src/balsa-message.c Modified: trunk/src/balsa-message.c ============================================================================== --- trunk/src/balsa-message.c (original) +++ trunk/src/balsa-message.c Fri Feb 8 15:26:48 2008 @@ -573,7 +573,8 @@ bm_disable_find_entry(bm); return res; case GDK_g: - if (event->state == GDK_CONTROL_MASK) { + if ((event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) == + GDK_CONTROL_MASK) { bm_find_again(bm, bm->find_forward); return res; } _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.