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
This commit is contained in:
Jordi Vilalta Prat 2009-01-01 08:14:43 +00:00
parent 9d80f21031
commit 05d3633eb3

View File

@ -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);
}
}