mirror of https://github.com/buggins/dlangui.git
fix crash on nested popup closing
This commit is contained in:
parent
ba9ce609a4
commit
e0c9b8bc9c
|
@ -270,14 +270,21 @@ class MenuWidgetBase : ListWidget {
|
|||
}
|
||||
|
||||
protected void onPopupClosed(PopupWidget p) {
|
||||
bool undoSelection = _openedPopupIndex == _selectedItemIndex;
|
||||
_openedPopup = null;
|
||||
_openedMenu = null;
|
||||
if (undoSelection) {
|
||||
selectItem(-1);
|
||||
setHoverItem(-1);
|
||||
}
|
||||
window.setFocus(this);
|
||||
if (_openedPopup) {
|
||||
if (_openedPopup is p) {
|
||||
_openedMenu.onPopupClosed(p);
|
||||
bool undoSelection = _openedPopupIndex == _selectedItemIndex;
|
||||
_openedPopup = null;
|
||||
_openedMenu = null;
|
||||
if (undoSelection) {
|
||||
selectItem(-1);
|
||||
setHoverItem(-1);
|
||||
}
|
||||
window.setFocus(this);
|
||||
} else if (thisPopup is p) {
|
||||
_openedPopup.close();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected void openSubmenu(int index, MenuItemWidget itemWidget, bool selectFirstItem) {
|
||||
|
|
Loading…
Reference in New Issue