summaryrefslogtreecommitdiff
path: root/src/gui/windows/chatwindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-10-13 18:05:28 +0300
committerAndrei Karas <akaras@inbox.ru>2014-10-13 18:05:28 +0300
commitae33dbfa0cdf7464786e65b8015481e85c31244d (patch)
tree1aeea6207cf05a82980cdee88a26aee505b414b4 /src/gui/windows/chatwindow.cpp
parent2df278161c10f5261c3075592afd4245a71be89e (diff)
downloadplus-ae33dbfa0cdf7464786e65b8015481e85c31244d.tar.gz
plus-ae33dbfa0cdf7464786e65b8015481e85c31244d.tar.bz2
plus-ae33dbfa0cdf7464786e65b8015481e85c31244d.tar.xz
plus-ae33dbfa0cdf7464786e65b8015481e85c31244d.zip
Disable hightlight by default in channels.
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r--src/gui/windows/chatwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp
index 5cf727d92..77f57a9ea 100644
--- a/src/gui/windows/chatwindow.cpp
+++ b/src/gui/windows/chatwindow.cpp
@@ -1192,6 +1192,7 @@ ChannelTab *ChatWindow::addChannelTab(const std::string &name,
{
ret = new ChannelTab(this, name);
mChannels[tempName] = ret;
+ ret->setAllowHighlight(false);
if (config.getBoolValue("showChatHistory"))
ret->loadFromLogFile(name);
}