Fix access violation when reopening same menu item

This commit is contained in:
Grim Maple 2023-05-19 19:58:48 +03:00
parent e8f8282100
commit c8ff9a5729
1 changed files with 1 additions and 1 deletions

View File

@ -813,7 +813,7 @@ class MenuWidgetBase : ListWidget {
//selectItem(-1); //selectItem(-1);
selectOnHover = false; selectOnHover = false;
} else { } else {
if(_openedPopupIndex == index) if(_openedPopup !is null && _openedPopupIndex == index)
{ {
_openedPopup.close(); _openedPopup.close();
_openedPopup = null; _openedPopup = null;