don't use Escape to quit full-screen mode, it collides with tools using

2008-07-03  Sven Neumann  <sven@gimp.org>

	* app/display/gimpdisplayshell-callbacks.c
	(gimp_display_shell_events): don't use Escape to quit full-screen
	mode, it collides with tools using the Escape key (bug #539949).

svn path=/trunk/; revision=26049
This commit is contained in:
Sven Neumann 2008-07-03 11:59:56 +00:00 committed by Sven Neumann
parent 712b9cc268
commit c3cc7367f4
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2008-07-03 Sven Neumann <sven@gimp.org>
* app/display/gimpdisplayshell-callbacks.c
(gimp_display_shell_events): don't use Escape to quit full-screen
mode, it collides with tools using the Escape key (bug #539949).
2008-07-03 Lars-Peter Clausen <lars@metafoo.de>
* plug-ins/pygimp/pygimp-drawable.c

View File

@ -175,11 +175,7 @@ gimp_display_shell_events (GtkWidget *widget,
case GDK_KP_Enter:
case GDK_ISO_Enter:
case GDK_BackSpace:
break;
case GDK_Escape:
if (event->type == GDK_KEY_PRESS)
gimp_display_shell_set_fullscreen (shell, FALSE);
break;
default: