diff options
author | José Ávila <linux@javila.net> | 2005-07-03 02:52:20 +0000 |
---|---|---|
committer | José Ávila <linux@javila.net> | 2005-07-03 02:52:20 +0000 |
commit | a3beebb0a5b900d70e44b96e4679621dc9fd95f5 (patch) | |
tree | 80e307a7d2c0a0963f3344495cf40bdca3cd3d3c /src/gui/chat.cpp | |
parent | 675348d7e62292ed01175b8b001c6a99b207da53 (diff) | |
download | mana-client-a3beebb0a5b900d70e44b96e4679621dc9fd95f5.tar.gz mana-client-a3beebb0a5b900d70e44b96e4679621dc9fd95f5.tar.bz2 mana-client-a3beebb0a5b900d70e44b96e4679621dc9fd95f5.tar.xz mana-client-a3beebb0a5b900d70e44b96e4679621dc9fd95f5.zip |
Fix bug in showing links and user defined colors in chat box
Diffstat (limited to 'src/gui/chat.cpp')
-rw-r--r-- | src/gui/chat.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index c02f5160..b3e072a2 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -46,6 +46,7 @@ ChatWindow::ChatWindow(const std::string &logfile): textOutput = new BrowserBox(BrowserBox::AUTO_WRAP); textOutput->setOpaque(false); + textOutput->disableLinksAndUserColors(); scrollArea = new ScrollArea(textOutput); scrollArea->setPosition( scrollArea->getBorderSize(), scrollArea->getBorderSize()); |