diff options
author | Eugene Sandulenko | 2009-06-06 17:48:46 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-06-06 17:48:46 +0000 |
commit | a3b6b0efb5a4b2472aeb94865fb292641d477001 (patch) | |
tree | c7d701026d29ea50047d7630d02e33b383714491 | |
parent | 0057d9b9b2c935cd1b49b05fe78c017868167432 (diff) | |
download | scummvm-rg350-a3b6b0efb5a4b2472aeb94865fb292641d477001.tar.gz scummvm-rg350-a3b6b0efb5a4b2472aeb94865fb292641d477001.tar.bz2 scummvm-rg350-a3b6b0efb5a4b2472aeb94865fb292641d477001.zip |
Make PopUp widget look more balanced
svn-id: r41261
-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); } } |