diff options
author | Jeff Ames | 2008-02-06 10:11:10 +0000 |
---|---|---|
committer | Jeff Ames | 2008-02-06 10:11:10 +0000 |
commit | 3a1947f658823b7758ae025631d98c88550f8bae (patch) | |
tree | abb21b4714eb7862c4a1eaaa8642e8fe62c17e2f | |
parent | * Put the script run limiter on the SceneObjectPart as otherwise you can drop... (diff) | |
download | opensim-SC_OLD-3a1947f658823b7758ae025631d98c88550f8bae.zip opensim-SC_OLD-3a1947f658823b7758ae025631d98c88550f8bae.tar.gz opensim-SC_OLD-3a1947f658823b7758ae025631d98c88550f8bae.tar.bz2 opensim-SC_OLD-3a1947f658823b7758ae025631d98c88550f8bae.tar.xz |
Removed super-stealth mode from PasswdPrompt. (Now you can see the prompt)
-rw-r--r-- | OpenSim/Framework/Console/ConsoleBase.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs index 1a29055..829d6c7 100644 --- a/OpenSim/Framework/Console/ConsoleBase.cs +++ b/OpenSim/Framework/Console/ConsoleBase.cs | |||
@@ -299,6 +299,7 @@ namespace OpenSim.Framework.Console | |||
299 | public string PasswdPrompt(string prompt) | 299 | public string PasswdPrompt(string prompt) |
300 | { | 300 | { |
301 | // FIXME: Needs to be better abstracted | 301 | // FIXME: Needs to be better abstracted |
302 | System.Console.WriteLine(String.Format("{0}: ", prompt)); | ||
302 | ConsoleColor oldfg = System.Console.ForegroundColor; | 303 | ConsoleColor oldfg = System.Console.ForegroundColor; |
303 | System.Console.ForegroundColor = System.Console.BackgroundColor; | 304 | System.Console.ForegroundColor = System.Console.BackgroundColor; |
304 | string temp = System.Console.ReadLine(); | 305 | string temp = System.Console.ReadLine(); |