Handle condition stack on event handler closing parenthesis

This commit is contained in:
Jan
2021-11-06 19:30:36 +01:00
parent 54d7f75af6
commit 81203e523e
4 changed files with 35 additions and 7 deletions

View File

@ -23,6 +23,7 @@ void GenericMenuEventHandlerSetPropertySequence::ProcessMatch(MenuFileParserStat
{
auto newEventHandlerSet = std::make_unique<CommonEventHandlerSet>();
state->m_current_event_handler_set = newEventHandlerSet.get();
state->m_current_nested_event_handler_set = newEventHandlerSet.get();
m_set_callback(state, std::move(newEventHandlerSet));
}
}