mirror of https://github.com/GNOME/gimp.git
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:
parent
712b9cc268
commit
c3cc7367f4
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue