mirror of https://github.com/buggins/dlangui.git
Fix access violation when reopening same menu item
This commit is contained in:
parent
e8f8282100
commit
c8ff9a5729
|
@ -813,7 +813,7 @@ class MenuWidgetBase : ListWidget {
|
|||
//selectItem(-1);
|
||||
selectOnHover = false;
|
||||
} else {
|
||||
if(_openedPopupIndex == index)
|
||||
if(_openedPopup !is null && _openedPopupIndex == index)
|
||||
{
|
||||
_openedPopup.close();
|
||||
_openedPopup = null;
|
||||
|
|
Loading…
Reference in New Issue