diff options
author | Max Horn | 2005-05-15 18:02:28 +0000 |
---|---|---|
committer | Max Horn | 2005-05-15 18:02:28 +0000 |
commit | ac215285d72ae179346d97c354968d259e20b8ab (patch) | |
tree | 4a5c3a20c7589d4ea04e7dab05e769029dddb815 /scumm | |
parent | 841c600fef543703919733939b6374ced0c8a982 (diff) | |
download | scummvm-rg350-ac215285d72ae179346d97c354968d259e20b8ab.tar.gz scummvm-rg350-ac215285d72ae179346d97c354968d259e20b8ab.tar.bz2 scummvm-rg350-ac215285d72ae179346d97c354968d259e20b8ab.zip |
Use a 'big' ListWidget in SaveLoadChooserEx
svn-id: r18116
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index feeaccd36f..68e67456ce 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -289,7 +289,7 @@ SaveLoadChooserEx::SaveLoadChooserEx(const String &title, const String &buttonLa new StaticTextWidget(this, 10, 6, _w - 2 * 10, kLineHeight, title, kTextAlignCenter); // Add choice list - _list = new GUI::ListWidget(this, 10, 18, _w - 2 * 10 - 180, _h - 14 - kBigButtonHeight - 18); + _list = new GUI::ListWidget(this, 10, 18, _w - 2 * 10 - 180, _h - 14 - kBigButtonHeight - 18, GUI::kBigWidgetSize); _list->setEditable(saveMode); _list->setNumberingMode(saveMode ? GUI::kListNumberingOne : GUI::kListNumberingZero); |