@@ -90,7 +90,7 @@ private MainWindow(IServiceProvider serviceProvider, Adw.Application application
9090 var actQuit = Gio . SimpleAction . New ( "quit" , null ) ;
9191 actQuit . OnActivate += Quit ;
9292 AddAction ( actQuit ) ;
93- _application . SetAccelsForAction ( "win.quit" , [ "<Ctrl >q" ] ) ;
93+ _application . SetAccelsForAction ( "win.quit" , [ "<Primary >q" ] ) ;
9494 // Open in files action
9595 var actOpenInFiles = Gio . SimpleAction . New ( "openInFiles" , null ) ;
9696 actOpenInFiles . OnActivate += OpenInFiles ;
@@ -99,22 +99,22 @@ private MainWindow(IServiceProvider serviceProvider, Adw.Application application
9999 var actOpenFolder = Gio . SimpleAction . New ( "openFolder" , null ) ;
100100 actOpenFolder . OnActivate += OpenFolder ;
101101 AddAction ( actOpenFolder ) ;
102- _application . SetAccelsForAction ( "win.openFolder" , [ "<Ctrl >o" ] ) ;
102+ _application . SetAccelsForAction ( "win.openFolder" , [ "<Primary >o" ] ) ;
103103 // Close folder action
104104 var actCloseFolder = Gio . SimpleAction . New ( "closeFolder" , null ) ;
105105 actCloseFolder . OnActivate += CloseFolder ;
106106 AddAction ( actCloseFolder ) ;
107- _application . SetAccelsForAction ( "win.closeFolder" , [ "<Ctrl >w" ] ) ;
107+ _application . SetAccelsForAction ( "win.closeFolder" , [ "<Primary >w" ] ) ;
108108 // Preferences action
109109 var actPreferences = Gio . SimpleAction . New ( "preferences" , null ) ;
110110 actPreferences . OnActivate += Preferences ;
111111 AddAction ( actPreferences ) ;
112- _application . SetAccelsForAction ( "win.preferences" , [ "<Ctrl >period" ] ) ;
112+ _application . SetAccelsForAction ( "win.preferences" , [ "<Primary >period" ] ) ;
113113 // Keyboard shortcuts action
114114 var actKeyboardShortcuts = Gio . SimpleAction . New ( "keyboardShortcuts" , null ) ;
115115 actKeyboardShortcuts . OnActivate += KeyboardShortcuts ;
116116 AddAction ( actKeyboardShortcuts ) ;
117- _application . SetAccelsForAction ( "win.keyboardShortcuts" , [ "<Ctrl >question" ] ) ;
117+ _application . SetAccelsForAction ( "win.keyboardShortcuts" , [ "<Primary >question" ] ) ;
118118 // About action
119119 var actAbout = Gio . SimpleAction . New ( "about" , null ) ;
120120 actAbout . OnActivate += About ;
0 commit comments