diff options
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/game.cpp b/src/game.cpp index 36dddf659..57bed1baf 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -231,7 +231,8 @@ static void createGuiWindows() questsWindow = new QuestsWindow; // TRANSLATORS: chat tab header - localChatTab = new ChatTab(chatWindow, _("General"), GENERAL_CHANNEL); + localChatTab = new ChatTab(chatWindow, _("General"), + GENERAL_CHANNEL, ChatTabType::INPUT); localChatTab->setAllowHighlight(false); if (config.getBoolValue("showChatHistory")) localChatTab->loadFromLogFile("#General"); @@ -248,7 +249,7 @@ static void createGuiWindows() } // TRANSLATORS: chat tab header - debugChatTab = new ChatTab(chatWindow, _("Debug"), ""); + debugChatTab = new ChatTab(chatWindow, _("Debug"), "", ChatTabType::DEBUG); debugChatTab->setAllowHighlight(false); if (config.getBoolValue("enableTradeTab")) |