diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-05-16 13:14:34 +0000 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-05-16 13:14:34 +0000 |
commit | 95684834ecb45261da1640a4ad8143653698b192 (patch) | |
tree | b0f6da9e6729082ac40812fbb5815109673efd67 /src/gui/windows/chatwindow.cpp | |
parent | 99f361699e1c8bbc1e69f4d199863b836b3528a3 (diff) | |
download | plus-95684834ecb45261da1640a4ad8143653698b192.tar.gz plus-95684834ecb45261da1640a4ad8143653698b192.tar.bz2 plus-95684834ecb45261da1640a4ad8143653698b192.tar.xz plus-95684834ecb45261da1640a4ad8143653698b192.zip |
Refactor loadFromLogFile calls into ChatTab contructor
This has the side effect that now #Debug history is also loaded.
****
mana/plus!84
Diffstat (limited to 'src/gui/windows/chatwindow.cpp')
-rw-r--r-- | src/gui/windows/chatwindow.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gui/windows/chatwindow.cpp b/src/gui/windows/chatwindow.cpp index a3b777655..15363883f 100644 --- a/src/gui/windows/chatwindow.cpp +++ b/src/gui/windows/chatwindow.cpp @@ -1246,8 +1246,6 @@ WhisperTab *ChatWindow::addWhisperTab(const std::string &caption, if ((gui != nullptr) && !playerRelations.isGoodName(nick)) ret->setLabelFont(gui->getSecureFont()); mWhispers[tempNick] = ret; - if (config.getBoolValue("showChatHistory")) - ret->loadFromLogFile(nick); } if (switchTo) @@ -1330,8 +1328,6 @@ ChatTab *ChatWindow::addChannelTab(const std::string &name, ret = new ChannelTab(this, name); mChannels[tempName] = ret; ret->setAllowHighlight(false); - if (config.getBoolValue("showChatHistory")) - ret->loadFromLogFile(name); } if (switchTo) |