diff options
author | Valentin Villenave <[email protected]> | 2021-10-06 18:08:56 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-11-09 22:37:56 +0100 |
commit | 9584cccf82091c67115024ec5640c43e8307ef0e (patch) | |
tree | 03762827012b2f7273f059be0dd6e980db244e02 | |
parent | 7bb2a22c9c8b9ec4aec14fd9bd534de075658cb9 (diff) | |
download | mate-applets-9584cccf82091c67115024ec5640c43e8307ef0e.tar.bz2 mate-applets-9584cccf82091c67115024ec5640c43e8307ef0e.tar.xz |
Mate Cpufreq applet: enable standard keyboard navigation
Key press events weren’t passed to GTK normally, which
prevented from opening the contextual menu without the mouse.
-rw-r--r-- | cpufreq/src/cpufreq-applet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpufreq/src/cpufreq-applet.c b/cpufreq/src/cpufreq-applet.c index adbd0e8c..adec4be1 100644 --- a/cpufreq/src/cpufreq-applet.c +++ b/cpufreq/src/cpufreq-applet.c @@ -376,7 +376,7 @@ cpufreq_applet_key_press (GtkWidget *widget, break; } - return FALSE; + return GTK_WIDGET_CLASS (cpufreq_applet_parent_class)->key_press_event (widget, event); } static void |