[amtk] test-headerbar: set accels for "win.shortcuts-window" action
- From: Sébastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [amtk] test-headerbar: set accels for "win.shortcuts-window" action
- Date: Sat, 14 Apr 2018 13:51:43 +0000 (UTC)
commit be5f3e619bdc3700f37736ae149a389a64ff8ea8
Author: Sébastien Wilmet <swilmet gnome org>
Date: Sat Apr 14 15:46:41 2018 +0200
test-headerbar: set accels for "win.shortcuts-window" action
tests/test-headerbar.c | 10 +++++++++-
1 files changed, 9 insertions(+), 1 deletions(-)
---
diff --git a/tests/test-headerbar.c b/tests/test-headerbar.c
index 506a055..bbc25a9 100644
--- a/tests/test-headerbar.c
+++ b/tests/test-headerbar.c
@@ -28,13 +28,16 @@ static AmtkActionInfoStore *action_info_store = NULL;
static void
add_action_info_entries (void)
{
+ const gchar *accels[] = {NULL, NULL, NULL};
+ AmtkActionInfo *action_info;
+
const AmtkActionInfoEntry entries[] =
{
/* action, icon, label, accel, tooltip */
{ "win.show-side-panel", NULL, "_Side Panel", "F9",
"Toggle side panel visibility" },
{ "win.print", NULL, "_Print", "<Control>p" },
- { "win.shortcuts-window", NULL, "_Keyboard Shortcuts", NULL },
+ { "win.shortcuts-window", NULL, "_Keyboard Shortcuts" },
{ NULL }
};
@@ -44,6 +47,11 @@ add_action_info_entries (void)
amtk_action_info_store_add_entries (action_info_store,
entries, -1,
NULL);
+
+ accels[0] = "<Control>F1";
+ accels[1] = "<Control>question";
+ action_info = amtk_action_info_store_lookup (action_info_store, "win.shortcuts-window");
+ amtk_action_info_set_accels (action_info, accels);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]