diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-08-24 15:52:44 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-08-24 15:52:44 -0600 |
commit | 57e9df052dc9668b7aee69afe74cf01530ed3b76 (patch) | |
tree | 85a92f989cc265461b6eba76102faad9fe2fbbdd /src/gui/chat.cpp | |
parent | b20931ca66c1c760bfe21a5a6c070c54ae3eb2a0 (diff) | |
download | mana-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/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 2 |
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) |