diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_chat.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/setup_chat.cpp b/src/gui/setup_chat.cpp index 63777a9a5..45b9e8748 100644 --- a/src/gui/setup_chat.cpp +++ b/src/gui/setup_chat.cpp @@ -41,6 +41,8 @@ #include "debug.h" +extern int serverVersion; + Setup_Chat::Setup_Chat(const Widget2 *const widget) : SetupTabScroll(widget) { @@ -119,6 +121,9 @@ Setup_Chat::Setup_Chat(const Widget2 *const widget) : new SetupItemCheckBox(_("Enable gm tab"), "", "enableGmTab", this, "enableGmTabEvent"); + new SetupItemCheckBox(_("Enable language tab"), "", + "enableLangTab", this, "enableLangTabEvent", false); + new SetupItemCheckBox(_("Enable battle tab"), "", "enableBattleTab", this, "enableBattleTabEvent"); |