diff options
author | D G Turner | 2013-09-30 04:53:17 +0100 |
---|---|---|
committer | D G Turner | 2013-09-30 04:53:17 +0100 |
commit | 62d07700b3b7ea25c5cdb1f6b394eb699a01e8e0 (patch) | |
tree | ffb547f78c5e7d8d9d3958358f0282f9569f24b9 /gui/widgets | |
parent | b6fbc3f4c65a4a4d31a98ee729ca3fc950085425 (diff) | |
download | scummvm-rg350-62d07700b3b7ea25c5cdb1f6b394eb699a01e8e0.tar.gz scummvm-rg350-62d07700b3b7ea25c5cdb1f6b394eb699a01e8e0.tar.bz2 scummvm-rg350-62d07700b3b7ea25c5cdb1f6b394eb699a01e8e0.zip |
GUI: Fix missing initializers for ListWidget. CID 1002259.
Diffstat (limited to 'gui/widgets')
-rw-r--r-- | gui/widgets/list.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gui/widgets/list.cpp b/gui/widgets/list.cpp index 473d5f04df..8ecb31311f 100644 --- a/gui/widgets/list.cpp +++ b/gui/widgets/list.cpp @@ -91,6 +91,9 @@ ListWidget::ListWidget(Dialog *boss, int x, int y, int w, int h, const char *too // FIXME: This flag should come from widget definition _editable = true; + + _quickSelect = true; + _editColor = ThemeEngine::kFontColorNormal; } ListWidget::~ListWidget() { |