chain up to the right function (fix taken from maemo-gtk).

2007-01-05  Michael Natterer  <mitch@imendio.com>

	* gtk/gtkwindow.c (gtk_window_key_release_event): chain up to
	the right function (fix taken from maemo-gtk).


svn path=/trunk/; revision=17078
This commit is contained in:
Michael Natterer
2007-01-05 14:07:17 +00:00
committed by Michael Natterer
parent d6b5d6ddbb
commit f332e19c4f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-01-05 Michael Natterer <mitch@imendio.com>
* gtk/gtkwindow.c (gtk_window_key_release_event): chain up to
the right function (fix taken from maemo-gtk).
2007-01-05 Behdad Esfahbod <behdad@gnome.org>
* gdk/gdkprivate.h:

View File

@ -4718,7 +4718,7 @@ gtk_window_key_release_event (GtkWidget *widget,
/* Chain up, invokes binding set */
if (!handled)
handled = GTK_WIDGET_CLASS (gtk_window_parent_class)->key_press_event (widget, event);
handled = GTK_WIDGET_CLASS (gtk_window_parent_class)->key_release_event (widget, event);
return handled;
}