Don't crash on trying to add items to non-existent menus

This commit is contained in:
Brad Davis 2019-05-20 13:05:57 -07:00
parent 5fbb788492
commit 5d37a076d5

View file

@ -72,6 +72,11 @@ struct MenuCache {
}
flushCache(menu);
MenuWrapper* parentItem = menu->getMenu(path);
if (!parentItem) {
qWarning() << "Attempted to add item to non-existent path " << path;
return;
}
QAction* action = menu->addActionToQMenuAndActionHash(parentItem, name);
if (!groupName.isEmpty()) {
QActionGroup* group{ nullptr };