Explorar o código

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

Tig hai 1 ano
pai
achega
25018b714a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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 ();