forked from AuroraMiddleware/gtk
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:
parent
0990c11a83
commit
9f0ee69552
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user