From 4d00f1903ab58716b57bcf6b4fe5bde704341830 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 17 Jun 2021 08:59:30 -0400 Subject: [PATCH] widget-factory: Show Ctrl-? in the menu We use our own action for showing the shortcuts window, so we need to associate this shortcut with our action for it to show up. --- demos/widget-factory/widget-factory.c | 1 + 1 file changed, 1 insertion(+) diff --git a/demos/widget-factory/widget-factory.c b/demos/widget-factory/widget-factory.c index b5a6662ec9..5b10ecdd74 100644 --- a/demos/widget-factory/widget-factory.c +++ b/demos/widget-factory/widget-factory.c @@ -1997,6 +1997,7 @@ activate (GApplication *app) const char *accelerators[2]; } accels[] = { { "app.about", { "F1", NULL } }, + { "app.shortcuts", { "question", NULL } }, { "app.quit", { "q", NULL } }, { "app.open-in", { "n", NULL } }, { "win.dark", { "d", NULL } },