Sfoglia il codice sorgente

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

Tig 1 anno fa
parent
commit
25018b714a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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 ();