aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordi Vilalta Prat2009-01-01 08:14:43 +0000
committerJordi Vilalta Prat2009-01-01 08:14:43 +0000
commit05d3633eb32ead8e11435b85a9db1ddaa1482fcb (patch)
tree10ac8b0260c0a60a4fc6b50f31c55f1b4e2df0d9
parent9d80f210314e8924b87925b8d309aed47da876de (diff)
downloadscummvm-rg350-05d3633eb32ead8e11435b85a9db1ddaa1482fcb.tar.gz
scummvm-rg350-05d3633eb32ead8e11435b85a9db1ddaa1482fcb.tar.bz2
scummvm-rg350-05d3633eb32ead8e11435b85a9db1ddaa1482fcb.zip
Restore the text background of pop-up widgets to fix the glitch on classic theme when changing the option with the mouse wheel
svn-id: r35647
-rw-r--r--gui/ThemeEngine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp
index 6ae3524e99..9ddf23549d 100644
--- a/gui/ThemeEngine.cpp
+++ b/gui/ThemeEngine.cpp
@@ -791,7 +791,7 @@ void ThemeEngine::drawPopUpWidget(const Common::Rect &r, const Common::String &s
if (!sel.empty()) {
Common::Rect text(r.left, r.top, r.right - 16, r.bottom);
- queueDDText(getTextData(dd), text, sel, false, false, _widgets[dd]->_textAlignH, _widgets[dd]->_textAlignV, deltax);
+ queueDDText(getTextData(dd), text, sel, true, false, _widgets[dd]->_textAlignH, _widgets[dd]->_textAlignV, deltax);
}
}