diff options
Diffstat (limited to 'src/controls/ComboBox.qml')
-rw-r--r-- | src/controls/ComboBox.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/controls/ComboBox.qml b/src/controls/ComboBox.qml index c5fed484..4e29dfe9 100644 --- a/src/controls/ComboBox.qml +++ b/src/controls/ComboBox.qml @@ -670,8 +670,7 @@ Control { function toggleShow() { if (popup.__popupVisible) { - popup.__dismissMenu() - popup.__destroyAllMenuPopups() + popup.__dismissAndDestroy() } else { if (items[__selectedIndex]) items[__selectedIndex].checked = true |