From 47bd32bbfdf3ad2ed38e885232f1cbcac80154b6 Mon Sep 17 00:00:00 2001 From: Valentin Villenave Date: Wed, 6 Oct 2021 18:08:56 +0200 Subject: Mate Cpufreq applet: enable standard keyboard navigation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Key press events weren’t passed to GTK normally, which prevented from opening the contextual menu without the mouse. --- cpufreq/src/cpufreq-applet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1