From ddf0854a6ef836e9e4b81f7f6676feb179e913c2 Mon Sep 17 00:00:00 2001 From: onefang Date: Thu, 4 Jul 2019 19:01:55 +1000 Subject: Use F1 instead of ? as the in command help key. "?" was a silly choice, what if you wanted to use it in a command? Alas this doesn't seem to work, but at least you can type "?" now. --- OpenSim/Framework/Console/LocalConsole.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs index fac346a..476fc15 100644 --- a/OpenSim/Framework/Console/LocalConsole.cs +++ b/OpenSim/Framework/Console/LocalConsole.cs @@ -454,7 +454,7 @@ namespace OpenSim.Framework.Console if (m_cursorXPosition >= 318) continue; - if (enteredChar == '?' && isCommand) + if (key.Key == ConsoleKey.F1 && isCommand) { if (ContextHelp()) continue; -- cgit v1.1