[gnome-tetravex/arnaudb/wip/gtk4: 33/42] Use <Control>.
- From: Arnaud B. <arnaudb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-tetravex/arnaudb/wip/gtk4: 33/42] Use <Control>.
- Date: Mon, 28 Sep 2020 13:21:15 +0000 (UTC)
commit 2400ca06ffca8be66e53b695ff6b163dd668e33e
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date: Tue Apr 7 08:15:16 2020 +0200
Use <Control>.
src/gnome-tetravex.vala | 34 +++++++++++++++++-----------------
src/help-overlay.ui | 8 ++++----
2 files changed, 21 insertions(+), 21 deletions(-)
---
diff --git a/src/gnome-tetravex.vala b/src/gnome-tetravex.vala
index 6df9e2c..4db1117 100644
--- a/src/gnome-tetravex.vala
+++ b/src/gnome-tetravex.vala
@@ -269,23 +269,23 @@ private class Tetravex : Gtk.Application
add_action_entries (action_entries, this);
add_action (settings.create_action ("theme"));
- set_accels_for_action ("app.solve", { "<Primary>h" });
- set_accels_for_action ("app.scores", { "<Primary>i" });
- set_accels_for_action ("app.new-game", { "<Primary>n" });
- set_accels_for_action ("app.pause", { "<Primary>p",
+ set_accels_for_action ("app.solve", { "<Control>h" });
+ set_accels_for_action ("app.scores", { "<Control>i" });
+ set_accels_for_action ("app.new-game", { "<Control>n" });
+ set_accels_for_action ("app.pause", { "<Control>p",
"Pause" });
- set_accels_for_action ("app.quit", { "<Primary>q" });
- set_accels_for_action ("app.move-up-l", { "<Primary>Up" });
- set_accels_for_action ("app.move-down-l", { "<Primary>Down" });
- set_accels_for_action ("app.move-left-l", { "<Primary>Left" });
- set_accels_for_action ("app.move-right-l", { "<Primary>Right" });
- set_accels_for_action ("app.move-up-r", { "<Shift><Primary>Up" });
- set_accels_for_action ("app.move-down-r", { "<Shift><Primary>Down" });
- set_accels_for_action ("app.move-left-r", { "<Shift><Primary>Left" });
- set_accels_for_action ("app.move-right-r", { "<Shift><Primary>Right" });
- set_accels_for_action ("app.undo", { "<Primary>z" });
- set_accels_for_action ("app.redo", { "<Shift><Primary>z" });
- set_accels_for_action ("app.reload", { "<Shift><Primary>r" });
+ set_accels_for_action ("app.quit", { "<Control>q" });
+ set_accels_for_action ("app.move-up-l", { "<Control>Up" });
+ set_accels_for_action ("app.move-down-l", { "<Control>Down" });
+ set_accels_for_action ("app.move-left-l", { "<Control>Left" });
+ set_accels_for_action ("app.move-right-l", { "<Control>Right" });
+ set_accels_for_action ("app.move-up-r", { "<Shift><Control>Up" });
+ set_accels_for_action ("app.move-down-r", { "<Shift><Control>Down" });
+ set_accels_for_action ("app.move-left-r", { "<Shift><Control>Left" });
+ set_accels_for_action ("app.move-right-r", { "<Shift><Control>Right" });
+ set_accels_for_action ("app.undo", { "<Control>z" });
+ set_accels_for_action ("app.redo", { "<Shift><Control>z" });
+ set_accels_for_action ("app.reload", { "<Shift><Control>r" });
set_accels_for_action ("app.hamburger", { "F10" });
// F1 and friends are managed manually
@@ -965,7 +965,7 @@ private class Tetravex : Gtk.Application
}
}
else if (name == "F1")
- return on_f1_pressed (state); // TODO fix dance done with the F1 & <Primary>F1 shortcuts that
show help overlay
+ return on_f1_pressed (state); // TODO fix dance done with the F1 & <Control>F1 shortcuts that
show help overlay
return false;
}
diff --git a/src/help-overlay.ui b/src/help-overlay.ui
index feb621d..6a0d828 100644
--- a/src/help-overlay.ui
+++ b/src/help-overlay.ui
@@ -77,21 +77,21 @@
<property name="title" translatable="yes" context="shortcut window">History</property>
<child>
<object class="GtkShortcutsShortcut">
- <property name="accelerator"><Primary>z</property>
+ <property name="accelerator"><Control>z</property>
<!-- Translators: Ctrl-Z shortcut description in the Keyboard Shortcuts dialog, section
History; verb, undoes last move -->
<property name="title" translatable="yes" context="shortcut window">Undo</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
- <property name="accelerator"><Shift><Primary>z</property>
+ <property name="accelerator"><Shift><Control>z</property>
<!-- Translators: Shift-Ctrl-Z shortcut description in the Keyboard Shortcuts dialog,
section History; verb, redoes undone move -->
<property name="title" translatable="yes" context="shortcut window">Redo</property>
</object>
</child>
<child>
<object class="GtkShortcutsShortcut">
- <property name="accelerator"><Shift><Primary>r</property>
+ <property name="accelerator"><Shift><Control>r</property>
<!-- Translators: Shift-Ctrl-R shortcut description in the Keyboard Shortcuts dialog,
section History; undoes all the moves -->
<property name="title" translatable="yes" context="shortcut window">Reload initial
position</property>
</object>
@@ -145,7 +145,7 @@
</child>
<child>
<object class="GtkShortcutsShortcut">
- <property name="accelerator"><Primary>question <Primary>F1</property>
+ <property name="accelerator"><Control>question <Control>F1</property>
<!-- Translators: Ctrl-F1 shortcut description in the Keyboard Shortcuts dialog, section
Generic; displays Keyboard Shortcuts dialog -->
<property name="title" translatable="yes" context="shortcut window">Show Keyboard
Shortcuts</property>
</object>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]