diff options
author | David Athay <ko2fan@gmail.com> | 2008-05-15 16:03:41 +0000 |
---|---|---|
committer | David Athay <ko2fan@gmail.com> | 2008-05-15 16:03:41 +0000 |
commit | 0927a888d5fbf75b752e3b8b7fa9c23bcbd76b2c (patch) | |
tree | ccf009ec0b97c3b0377e82cff3c52df69007feb6 | |
parent | f4c0d85edfc8c6fb0d4d436f098e841bac72f5f1 (diff) | |
download | mana-0927a888d5fbf75b752e3b8b7fa9c23bcbd76b2c.tar.gz mana-0927a888d5fbf75b752e3b8b7fa9c23bcbd76b2c.tar.bz2 mana-0927a888d5fbf75b752e3b8b7fa9c23bcbd76b2c.tar.xz mana-0927a888d5fbf75b752e3b8b7fa9c23bcbd76b2c.zip |
Fixed chat window scrolling
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/gui/chat.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,7 @@ src/Makefile.am, data/graphics/gui/tab.png, data/graphics/gui/tabselected.png, tmw.cbp: Added tab with image based on button. + * src/gui/chat.cpp: Fixed chat window scrolling. 2008-05-12 David Athay <ko2fan@gmail.com> diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp index c15f7968..a7248b3f 100644 --- a/src/gui/chat.cpp +++ b/src/gui/chat.cpp @@ -199,6 +199,8 @@ ChatWindow::chatLog(std::string line, int own, const std::string &channelName) { output->addRow(line); } + + scroll->logic(); } #if 0 |