diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-08-22 03:07:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-08-22 03:07:13 +0300 |
commit | dddfb405de9d04f50d3a95cc3b0ebc3e49884a65 (patch) | |
tree | 4bb96a90cb585a65025533e512e7c3de7cffed00 /src/gui/setup_chat.cpp | |
parent | 07c2eb8ffd62fe69f410cc045efc837441a6b6d4 (diff) | |
download | ManaVerse-dddfb405de9d04f50d3a95cc3b0ebc3e49884a65.tar.gz ManaVerse-dddfb405de9d04f50d3a95cc3b0ebc3e49884a65.tar.bz2 ManaVerse-dddfb405de9d04f50d3a95cc3b0ebc3e49884a65.tar.xz ManaVerse-dddfb405de9d04f50d3a95cc3b0ebc3e49884a65.zip |
Add highlight list option.
Before in highlight was only player nick.
Diffstat (limited to 'src/gui/setup_chat.cpp')
-rw-r--r-- | src/gui/setup_chat.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/setup_chat.cpp b/src/gui/setup_chat.cpp index 722a3f8b2..9e75b9c0a 100644 --- a/src/gui/setup_chat.cpp +++ b/src/gui/setup_chat.cpp @@ -120,6 +120,11 @@ Setup_Chat::Setup_Chat() new SetupItemCheckBox(_("Use local time"), "", "useLocalTime", this, "useLocalTimeEvent"); + new SetupItemLabel(_("Other"), "", this); + + new SetupItemTextField(_("Highlight words (separated by comma)"), "", + "highlightWords", this, "highlightWordsEvent"); + setDimension(gcn::Rectangle(0, 0, 550, 350)); } @@ -128,5 +133,8 @@ void Setup_Chat::apply() SetupTabScroll::apply(); if (chatWindow) + { chatWindow->adjustTabSize(); + chatWindow->parseHighlights(); + } } |