aboutsummaryrefslogtreecommitdiff
path: root/gui/ThemeNew.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2006-02-24 20:25:34 +0000
committerTorbjörn Andersson2006-02-24 20:25:34 +0000
commit2cb8832991eccd9c11c170375309b28e1f52ef33 (patch)
tree875a45fe8a40e09777aee5146cd8cbbeef115afd /gui/ThemeNew.cpp
parent66b5b7b3f375c516dbd7629528596b1ac2ae8f38 (diff)
downloadscummvm-rg350-2cb8832991eccd9c11c170375309b28e1f52ef33.tar.gz
scummvm-rg350-2cb8832991eccd9c11c170375309b28e1f52ef33.tar.bz2
scummvm-rg350-2cb8832991eccd9c11c170375309b28e1f52ef33.zip
Fixed redraw glitch. Our editable widgets were asking the theme to draw a very
wide caret. Changed that width to 1. svn-id: r20842
Diffstat (limited to 'gui/ThemeNew.cpp')
-rw-r--r--gui/ThemeNew.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeNew.cpp b/gui/ThemeNew.cpp
index 2cc9aa3ac3..25bf421a1a 100644
--- a/gui/ThemeNew.cpp
+++ b/gui/ThemeNew.cpp
@@ -729,7 +729,7 @@ void ThemeNew::drawCaret(const Common::Rect &r, bool erase, kState state) {
if (!_initOk)
return;
- restoreBackground(Common::Rect(r.left, r.top, r.left+1, r.bottom));
+ restoreBackground(r);
if (!erase) {
_screen.vLine(r.left, r.top, r.bottom, _colors[kCaretColor]);
} else if (r.top >= 0) {