@@ -57,7 +57,6 @@ public class Jorts.Application : Gtk.Application {
5757 public const string ACTION_PREFIX = " app." ;
5858 public const string ACTION_QUIT = " action_quit" ;
5959 public const string ACTION_NEW = " action_new" ;
60- public const string ACTION_DELETE = " action_delete" ;
6160 public const string ACTION_TOGGLE_SCRIBBLY = " action_toggle_scribbly" ;
6261 public const string ACTION_TOGGLE_ACTIONBAR = " action_toggle_actionbar" ;
6362 public const string ACTION_SHOW_PREFERENCES = " action_show_preferences" ;
@@ -89,29 +88,30 @@ public class Jorts.Application : Gtk.Application {
8988 add_action_entries (ACTION_ENTRIES , this );
9089 set_accels_for_action (" app.action_quit" , {" <Control>Q" });
9190 set_accels_for_action (" app.action_new" , {" <Control>N" });
92- set_accels_for_action (" app.action_delete" , {" <Control>W" });
9391 set_accels_for_action (" app.action_save" , {" <Control>S" });
94- set_accels_for_action (" app.action_zoom_out" , {" <Control>minus" , " <Control>KP_Subtract" });
95- set_accels_for_action (" app.action_zoom_default" , {" <Control>equal" , " <Control>0" , " <Control>KP_0" });
96- set_accels_for_action (" app.action_zoom_in" , {" <Control>plus" , " <Control>KP_Add" });
97- set_accels_for_action (" app.action_toggle_scribbly" , {" <Control>H" });
98- set_accels_for_action (" app.action_toggle_mono" , {" <Control>m" });
9992 set_accels_for_action (" app.action_toggle_actionbar" , {" <Control>T" });
10093 set_accels_for_action (" app.action_show_preferences" , {" <Control>P" });
101- set_accels_for_action (" app.action_focus_title" , {" <Control>L" });
102- set_accels_for_action (" app.action_show_emoji" , {" <Control>period" });
103- set_accels_for_action (" app.action_show_menu" , {" <Control>G" , " <Control>O" });
104-
105- set_accels_for_action (" app.action_theme_1" , {" <Alt>1" });
106- set_accels_for_action (" app.action_theme_2" , {" <Alt>2" });
107- set_accels_for_action (" app.action_theme_3" , {" <Alt>3" });
108- set_accels_for_action (" app.action_theme_4" , {" <Alt>4" });
109- set_accels_for_action (" app.action_theme_5" , {" <Alt>5" });
110- set_accels_for_action (" app.action_theme_6" , {" <Alt>6" });
111- set_accels_for_action (" app.action_theme_7" , {" <Alt>7" });
112- set_accels_for_action (" app.action_theme_8" , {" <Alt>8" });
113- set_accels_for_action (" app.action_theme_9" , {" <Alt>9" });
114- set_accels_for_action (" app.action_theme_0" , {" <Alt>0" , " <Alt>KP_0" });
94+ set_accels_for_action (" app.action_toggle_scribbly" , {" <Control>H" });
95+
96+ set_accels_for_action (" win.action_delete" , {" <Control>W" });
97+ set_accels_for_action (" win.action_zoom_out" , {" <Control>minus" , " <Control>KP_Subtract" });
98+ set_accels_for_action (" win.action_zoom_default" , {" <Control>equal" , " <Control>0" , " <Control>KP_0" });
99+ set_accels_for_action (" win.action_zoom_in" , {" <Control>plus" , " <Control>KP_Add" });
100+ set_accels_for_action (" win.action_toggle_mono" , {" <Control>m" });
101+ set_accels_for_action (" win.action_focus_title" , {" <Control>L" });
102+ set_accels_for_action (" win.action_show_emoji" , {" <Control>period" });
103+ set_accels_for_action (" win.action_show_menu" , {" <Control>G" , " <Control>O" });
104+
105+ set_accels_for_action (" win.action_theme_1" , {" <Alt>1" });
106+ set_accels_for_action (" win.action_theme_2" , {" <Alt>2" });
107+ set_accels_for_action (" win.action_theme_3" , {" <Alt>3" });
108+ set_accels_for_action (" win.action_theme_4" , {" <Alt>4" });
109+ set_accels_for_action (" win.action_theme_5" , {" <Alt>5" });
110+ set_accels_for_action (" win.action_theme_6" , {" <Alt>6" });
111+ set_accels_for_action (" win.action_theme_7" , {" <Alt>7" });
112+ set_accels_for_action (" win.action_theme_8" , {" <Alt>8" });
113+ set_accels_for_action (" win.action_theme_9" , {" <Alt>9" });
114+ set_accels_for_action (" win.action_theme_0" , {" <Alt>0" , " <Alt>KP_0" });
115115
116116
117117 // Force the eOS icon theme, and set the blueberry as fallback, if for some reason it fails for individual notes
0 commit comments