diff options
-rw-r--r-- | gui/ListWidget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/ListWidget.cpp b/gui/ListWidget.cpp index d2229a31f3..f6b3526184 100644 --- a/gui/ListWidget.cpp +++ b/gui/ListWidget.cpp @@ -31,6 +31,7 @@ ListWidget::ListWidget(GuiObject *boss, int x, int y, int w, int h) : EditableWidget(boss, x, y, w - kScrollBarWidth, h), CommandSender(boss) { _flags = WIDGET_ENABLED | WIDGET_CLEARBG | WIDGET_RETAIN_FOCUS | WIDGET_WANT_TICKLE; _type = kListWidget; + _editMode = false; _numberingMode = kListNumberingOne; _entriesPerPage = (_h - 2) / kLineHeight; _currentPos = 0; |