From 4d6efcb52e54e3d48545cd07d23308664b3294d5 Mon Sep 17 00:00:00 2001 From: miguel Date: Fri, 25 May 2018 19:07:23 -0400 Subject: [PATCH] Clarified when to use ESC 9 --- Example/demo.cs | 2 +- StandaloneExample/Program.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Example/demo.cs b/Example/demo.cs index 1df617042..d1d562a6e 100644 --- a/Example/demo.cs +++ b/Example/demo.cs @@ -137,7 +137,7 @@ static class Demo { new Button (3, 19, "Ok"), new Button (10, 19, "Cancel"), progress, - new Label (3, 22, "Press ESC and 9 to activate the menubar") + new Label (3, 22, "Press F9 (on Unix, ESC+9 is an alias) to activate the menubar") ); } diff --git a/StandaloneExample/Program.cs b/StandaloneExample/Program.cs index bcfc33982..bd50c02cd 100644 --- a/StandaloneExample/Program.cs +++ b/StandaloneExample/Program.cs @@ -136,7 +136,7 @@ class Demo { new Button ("Ok") { X = 3, Y = 19 }, new Button ("Cancel") { X = 10, Y = 19 }, progress, - new Label ("Press ESC and 9 to activate the menubar") { X = 3, Y = 22 } + new Label ("Press F9 (on Unix ESC+9 is an alias) to activate the menubar") { X = 3, Y = 22 } ); }