diff options
author | Benjamin Otte <otte@redhat.com> | 2018-08-16 03:59:24 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2020-03-18 23:00:50 -0400 |
commit | ef40f22632912de1f0f83286013f27966f997114 (patch) | |
tree | 9ac5282da292d9c358484278dd30d901e0cc7323 /gtk/gtkshortcut.c | |
parent | bea2dcef8fd476a079c71382d67f78c504999b18 (diff) | |
download | gtk+-ef40f22632912de1f0f83286013f27966f997114.tar.gz |
shortcuttrigger: Add support for mnemonics
Mnemonics need to be triggered with help from the controllers (who
determine the modifiers). Support for that has been added, too.
Mnemonics do not use this yet though.
Diffstat (limited to 'gtk/gtkshortcut.c')
-rw-r--r-- | gtk/gtkshortcut.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gtk/gtkshortcut.c b/gtk/gtkshortcut.c index 6f8012c20f..6d017e3721 100644 --- a/gtk/gtkshortcut.c +++ b/gtk/gtkshortcut.c @@ -259,13 +259,6 @@ gtk_shortcut_new (void) return g_object_new (GTK_TYPE_SHORTCUT, NULL); } -gboolean -gtk_shortcut_trigger (GtkShortcut *self, - GdkEvent *event) -{ - return gtk_shortcut_trigger_trigger (self->trigger, event); -} - static gboolean binding_compose_params (GObject *object, GVariantIter *args, |