diff options
-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 |