Fix an age-old typo

GtkIconView was not properly propagating key release events,
since forever.

https://bugzilla.gnome.org/show_bug.cgi?id=706740
This commit is contained in:
Matthias Clasen 2013-08-31 12:23:54 -04:00
parent 58c96dd969
commit 445204acca

View File

@ -2505,7 +2505,7 @@ gtk_icon_view_key_release (GtkWidget *widget,
if (icon_view->priv->doing_rubberband)
return TRUE;
return GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_press_event (widget, event);
return GTK_WIDGET_CLASS (gtk_icon_view_parent_class)->key_release_event (widget, event);
}
static void