diff options
Diffstat (limited to 'src/gui/widgets/popuplist.cpp')
-rw-r--r-- | src/gui/widgets/popuplist.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gui/widgets/popuplist.cpp b/src/gui/widgets/popuplist.cpp index e695c734b..c459fe351 100644 --- a/src/gui/widgets/popuplist.cpp +++ b/src/gui/widgets/popuplist.cpp @@ -30,7 +30,8 @@ PopupList::PopupList(DropDown *const widget, ListModel *const listModel, - bool extended, bool modal) : + const bool extended, + const Modal modal) : Popup("PopupList", "popuplist.xml"), FocusListener(), mListModel(listModel), @@ -88,7 +89,7 @@ void PopupList::show(int x, int y) setPosition(x, y); setVisible(true); requestMoveToTop(); - if (mModal) + if (mModal == Modal_true) requestModalFocus(); } @@ -153,7 +154,7 @@ void PopupList::mouseReleased(MouseEvent& event) if (mDropDown) mDropDown->updateSelection(); setVisible(false); - if (mModal) + if (mModal == Modal_true) releaseModalFocus(); } @@ -169,7 +170,7 @@ void PopupList::focusGained(const Event& event) if (mDropDown) mDropDown->updateSelection(); setVisible(false); - if (mModal) + if (mModal == Modal_true) releaseModalFocus(); } |