diff options
author | Max Horn | 2002-11-21 17:05:50 +0000 |
---|---|---|
committer | Max Horn | 2002-11-21 17:05:50 +0000 |
commit | dd5e27f2c7098ae339a4d5c3b81184e6c56300b6 (patch) | |
tree | 711e54be2f7eed65ece6e939da7eaa6abf513313 | |
parent | 73369f6f37d7d3de16f7c465c1c36b93a259daef (diff) | |
download | scummvm-rg350-dd5e27f2c7098ae339a4d5c3b81184e6c56300b6.tar.gz scummvm-rg350-dd5e27f2c7098ae339a4d5c3b81184e6c56300b6.tar.bz2 scummvm-rg350-dd5e27f2c7098ae339a4d5c3b81184e6c56300b6.zip |
added missing right border
svn-id: r5671
-rw-r--r-- | gui/EditTextWidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/EditTextWidget.cpp b/gui/EditTextWidget.cpp index af2b5733b6..0c65b604d8 100644 --- a/gui/EditTextWidget.cpp +++ b/gui/EditTextWidget.cpp @@ -125,6 +125,7 @@ void EditTextWidget::drawWidget(bool hilite) gui->hline(_x, _y, _x+_w-1, gui->_color); gui->hline(_x, _y+_h-1, _x+_w-1, gui->_shadowcolor); gui->vline(_x, _y, _y+_h-1, gui->_color); + gui->vline(_x+_w-1, _y, _y+_h-1, gui->_shadowcolor); // Draw the text _align = (gui->getStringWidth(_label) > _w-6) ? kTextAlignRight : kTextAlignLeft; |