diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-20 20:11:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-20 20:11:32 +0300 |
commit | a0de9bc8c0bec21d3a793e958b7a8a98ec482cf6 (patch) | |
tree | 56a45c6c9e990825e36377c715c281f01fb5c52c /src/gui/widgets/tabs | |
parent | 1a6beed9f1c58afd0d9eb6999f0ca12e08d0531d (diff) | |
download | plus-a0de9bc8c0bec21d3a793e958b7a8a98ec482cf6.tar.gz plus-a0de9bc8c0bec21d3a793e958b7a8a98ec482cf6.tar.bz2 plus-a0de9bc8c0bec21d3a793e958b7a8a98ec482cf6.tar.xz plus-a0de9bc8c0bec21d3a793e958b7a8a98ec482cf6.zip |
Add emotes button in chat input line.
Enabled by default.
Diffstat (limited to 'src/gui/widgets/tabs')
-rw-r--r-- | src/gui/widgets/tabs/setup_chat.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/widgets/tabs/setup_chat.cpp b/src/gui/widgets/tabs/setup_chat.cpp index e5acd10e5..121886830 100644 --- a/src/gui/widgets/tabs/setup_chat.cpp +++ b/src/gui/widgets/tabs/setup_chat.cpp @@ -120,6 +120,10 @@ Setup_Chat::Setup_Chat(const Widget2 *const widget) : new SetupItemCheckBox(_("Hide shop messages"), "", "hideShopMessages", this, "hideShopMessagesEvent"); + // TRANSLATORS: settings option + new SetupItemCheckBox(_("Show MVP messages"), "", + "showMVP", this, "showMVPEvent"); + // TRANSLATORS: settings group new SetupItemLabel(_("Tabs"), "", this); @@ -184,8 +188,8 @@ Setup_Chat::Setup_Chat(const Widget2 *const widget) : "globalsFilter", this, "globalsFilterEvent"); // TRANSLATORS: settings option - new SetupItemCheckBox(_("Show MVP messages"), "", - "showMVP", this, "showMVPEvent"); + new SetupItemCheckBox(_("Show emotes button in chat"), "", + "showEmotesButton", this, "showEmotesButtonEvent"); setDimension(gcn::Rectangle(0, 0, 550, 350)); } |