summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2013-09-03 13:10:47 +0400
committerAndrey Nazarov <skuller@skuller.net>2013-09-03 13:41:10 +0400
commit4fa372fc0d84875f68591fa8fcfcc68075591eac (patch)
tree3e7841623d88cce25d4101a781bad9337dd35a67 /src
parent41006f267831461f5c658c621fc7558b603ac8be (diff)
Don't always clear notify area when starting mm.
Diffstat (limited to 'src')
-rw-r--r--src/client/console.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/client/console.c b/src/client/console.c
index eb1eeeb..4cf59f8 100644
--- a/src/client/console.c
+++ b/src/client/console.c
@@ -293,7 +293,10 @@ static void start_message_mode(chatMode_t mode)
return;
}
- Con_Close(qtrue);
+ // starting messagemode closes console
+ if (cls.key_dest & KEY_CONSOLE) {
+ Con_Close(qtrue);
+ }
con.chat = mode;
IF_Replace(&con.chatPrompt.inputLine, Cmd_RawArgs());