27 lines
937 B
Diff
27 lines
937 B
Diff
From f3866651321e0bc4ba79dc62a44ef7caea785e70 Mon Sep 17 00:00:00 2001
|
|
From: David King <amigadave@amigadave.com>
|
|
Date: Mon, 25 Apr 2022 14:17:43 +0100
|
|
Subject: [PATCH] application: Fix help overlay shortcut
|
|
|
|
https://gitlab.gnome.org/GNOME/gnome-system-monitor/-/issues/202
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=2073741
|
|
---
|
|
src/application.cpp | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/application.cpp b/src/application.cpp
|
|
index e66408a1..196b87ee 100644
|
|
--- a/src/application.cpp
|
|
+++ b/src/application.cpp
|
|
@@ -511,6 +511,7 @@ void GsmApplication::on_startup()
|
|
add_accelerator("<Alt>Return", "win.process-properties", NULL);
|
|
add_accelerator("<Primary>f", "win.search", g_variant_new_boolean (TRUE));
|
|
add_accelerator("F1", "app.help", NULL);
|
|
+ add_accelerator("<Primary>question", "win.show-help-overlay", NULL);
|
|
|
|
Gtk::Window::set_default_icon_name ("org.gnome.SystemMonitor");
|
|
|
|
--
|
|
2.36.1
|
|
|