Browse Source

Changed Shortcuts scenario to use Ctrl-F4 to exit instead of Ctrl-Z as that's used for suspend on linux/mac

Tig 1 year ago
parent
commit
25018b714a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      UICatalog/Scenarios/Shortcuts.cs

+ 1 - 1
UICatalog/Scenarios/Shortcuts.cs

@@ -30,7 +30,7 @@ public class Shortcuts : Scenario
     // QuitKey and it only sticks if changed after init
     private void App_Loaded (object sender, EventArgs e)
     {
-        Application.QuitKey = Key.Z.WithCtrl;
+        Application.QuitKey = Key.F4.WithCtrl;
         Application.Top.Title = GetQuitKeyAndName ();
 
         ObservableCollection<string> eventSource = new ();