bindings: Fix gtk_binding_entry_skip

This fixes a regression from commit 9a3466832c.

https://bugzilla.gnome.org/show_bug.cgi?id=695380
This commit is contained in:
Christian Persch 2013-03-15 18:48:44 +01:00
parent 0990c11a83
commit 9f0ee69552

View File

@ -1557,7 +1557,7 @@ gtk_bindings_activate_list (GObject *object,
handled = binding_activate (binding_set, entries,
object, is_release,
&unbound);
if (handled)
if (handled || unbound)
break;
}
@ -1584,6 +1584,8 @@ gtk_bindings_activate_list (GObject *object,
handled = binding_activate (binding_set, entries,
object, is_release,
&unbound);
if (unbound)
break;
}
if (unbound)