diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-10-10 23:32:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-10-10 23:32:35 +0300 |
commit | 66f4de3a19e8692a10f4ab1345769c7ccc914090 (patch) | |
tree | 809ed86f749fae05f638d73729addea225e71274 /src/gui | |
parent | 881501a05400f58df76036e59313d08305c0b494 (diff) | |
download | plus-66f4de3a19e8692a10f4ab1345769c7ccc914090.tar.gz plus-66f4de3a19e8692a10f4ab1345769c7ccc914090.tar.bz2 plus-66f4de3a19e8692a10f4ab1345769c7ccc914090.tar.xz plus-66f4de3a19e8692a10f4ab1345769c7ccc914090.zip |
Add option to show/hide MVP messages.
By default this messages hidden.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/setup_chat.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/setup_chat.cpp b/src/gui/setup_chat.cpp index 9e75b9c0a..1b8209c8f 100644 --- a/src/gui/setup_chat.cpp +++ b/src/gui/setup_chat.cpp @@ -125,6 +125,9 @@ Setup_Chat::Setup_Chat() new SetupItemTextField(_("Highlight words (separated by comma)"), "", "highlightWords", this, "highlightWordsEvent"); + new SetupItemCheckBox(_("Show MVP messages"), "", + "showMVP", this, "showMVPEvent"); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } |