diff options
-rw-r--r-- | gui/ThemeEngine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index fe93a1f7d6..f81bae4d27 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -952,7 +952,7 @@ void ThemeEngine::drawPopUpWidget(const Common::Rect &r, const Common::String &s queueDD(dd, r); if (!sel.empty()) { - Common::Rect text(r.left, r.top, r.right - 16, r.bottom); + Common::Rect text(r.left + 3, r.top + 1, r.right - 10, r.bottom); queueDDText(getTextData(dd), text, sel, true, false, _widgets[dd]->_textAlignH, _widgets[dd]->_textAlignV, deltax); } } |