summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-12-08 08:02:18 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-12-08 08:02:18 -0500
commite43080a0c2cdb63e11332c5412665e1739789af1 (patch)
tree70ec53d03919b3f406225053f41e307672b7c1dc /tests
parent36effbb307c6a9a8a5d2476b537cd973e8eb282e (diff)
downloadgtk+-e43080a0c2cdb63e11332c5412665e1739789af1.tar.gz
Test some virtual modifiers
This adds some accelerators involving Super and Hyper to testmerge. This helps in testing our accel matching for those.
Diffstat (limited to 'tests')
-rw-r--r--tests/testmerge.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/testmerge.c b/tests/testmerge.c
index d6e1e56638..de6dd95f1f 100644
--- a/tests/testmerge.c
+++ b/tests/testmerge.c
@@ -212,11 +212,11 @@ enum {
static GtkRadioActionEntry radio_entries[] = {
{ "justify-left", GTK_STOCK_JUSTIFY_LEFT, NULL, "<control>L",
"Left justify the text", JUSTIFY_LEFT },
- { "justify-center", GTK_STOCK_JUSTIFY_CENTER, NULL, "<control>E",
+ { "justify-center", GTK_STOCK_JUSTIFY_CENTER, NULL, "<super>E",
"Center justify the text", JUSTIFY_CENTER },
- { "justify-right", GTK_STOCK_JUSTIFY_RIGHT, NULL, "<control>R",
+ { "justify-right", GTK_STOCK_JUSTIFY_RIGHT, NULL, "<hyper>R",
"Right justify the text", JUSTIFY_RIGHT },
- { "justify-fill", GTK_STOCK_JUSTIFY_FILL, NULL, "<control>J",
+ { "justify-fill", GTK_STOCK_JUSTIFY_FILL, NULL, "<super><hyper>J",
"Fill justify the text", JUSTIFY_FILL },
};
static guint n_radio_entries = G_N_ELEMENTS (radio_entries);