From c51e4177fed8bbd27d3e05c48784be296a338bfc Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Tue, 14 Apr 2020 07:34:28 -0600 Subject: [PATCH] made it so Ctrl-X on status bar actually quits (#362) --- Example/demo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/demo.cs b/Example/demo.cs index 94b00e9d9..ef0e833f9 100644 --- a/Example/demo.cs +++ b/Example/demo.cs @@ -517,7 +517,7 @@ static class Demo { new StatusItem(Key.F1, "~F1~ Help", () => Help()), new StatusItem(Key.F2, "~F2~ Load", null), new StatusItem(Key.F3, "~F3~ Save", null), - new StatusItem(Key.ControlX, "~^X~ Quit", () => Quit()), + new StatusItem(Key.ControlX, "~^X~ Quit", () => { if (Quit ()) top.Running = false; }), }); win.Add (drag, dragText);