diff options
author | Johannes Schickel | 2009-03-04 12:28:23 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-03-04 12:28:23 +0000 |
commit | 7270c879194837627968af9717ff7100e46741cf (patch) | |
tree | 8faf1bc16d11fe2758e1f4e977545dd10a321d49 | |
parent | b594af53893ea16ee3f2c0e44c41afbdc72a867b (diff) | |
download | scummvm-rg350-7270c879194837627968af9717ff7100e46741cf.tar.gz scummvm-rg350-7270c879194837627968af9717ff7100e46741cf.tar.bz2 scummvm-rg350-7270c879194837627968af9717ff7100e46741cf.zip |
Fix bug #2621207 "GUI: Debug console glitch".
svn-id: r39128
-rw-r--r-- | gui/console.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/console.cpp b/gui/console.cpp index 5ad4051e16..cf274b3ebd 100644 --- a/gui/console.cpp +++ b/gui/console.cpp @@ -663,6 +663,7 @@ void ConsoleDialog::scrollToCurrent() { } else if (line > _scrollLine) { _scrollLine = line; updateScrollBuffer(); + draw(); } } |