diff options
author | onefang | 2019-07-04 19:01:55 +1000 |
---|---|---|
committer | onefang | 2019-07-04 19:01:55 +1000 |
commit | ddf0854a6ef836e9e4b81f7f6676feb179e913c2 (patch) | |
tree | 78fcf347bce51f52467c37bb8e6fe522b95c085d | |
parent | Log FS asset base and spool directory. (diff) | |
download | opensim-SC_OLD-ddf0854a6ef836e9e4b81f7f6676feb179e913c2.zip opensim-SC_OLD-ddf0854a6ef836e9e4b81f7f6676feb179e913c2.tar.gz opensim-SC_OLD-ddf0854a6ef836e9e4b81f7f6676feb179e913c2.tar.bz2 opensim-SC_OLD-ddf0854a6ef836e9e4b81f7f6676feb179e913c2.tar.xz |
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.
-rw-r--r-- | OpenSim/Framework/Console/LocalConsole.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
454 | if (m_cursorXPosition >= 318) | 454 | if (m_cursorXPosition >= 318) |
455 | continue; | 455 | continue; |
456 | 456 | ||
457 | if (enteredChar == '?' && isCommand) | 457 | if (key.Key == ConsoleKey.F1 && isCommand) |
458 | { | 458 | { |
459 | if (ContextHelp()) | 459 | if (ContextHelp()) |
460 | continue; | 460 | continue; |