summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-08-24 15:52:44 -0600
committerJared Adams <jaxad0127@gmail.com>2009-08-24 15:52:44 -0600
commit57e9df052dc9668b7aee69afe74cf01530ed3b76 (patch)
tree85a92f989cc265461b6eba76102faad9fe2fbbdd /src
parentb20931ca66c1c760bfe21a5a6c070c54ae3eb2a0 (diff)
downloadMana-57e9df052dc9668b7aee69afe74cf01530ed3b76.tar.gz
Mana-57e9df052dc9668b7aee69afe74cf01530ed3b76.tar.bz2
Mana-57e9df052dc9668b7aee69afe74cf01530ed3b76.tar.xz
Mana-57e9df052dc9668b7aee69afe74cf01530ed3b76.zip
Change default for whispers in tabs
It will now default to showing whispers in tabs.
Diffstat (limited to 'src')
-rw-r--r--src/gui/chat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index f1814d93..c0597a64 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -453,7 +453,7 @@ void ChatWindow::whisper(const std::string &nick,
if (i != mWhispers.end())
tab = i->second;
- else if (config.getValue("whispertab", false))
+ else if (config.getValue("whispertab", true))
tab = addWhisperTab(nick);
if (tab)