fix: ImNodes not being deinitialized correctly

This commit is contained in:
WerWolv
2025-01-14 17:50:29 +01:00
parent 185a593bc2
commit ecc86ee429
3 changed files with 7 additions and 1 deletions

View File

@@ -887,7 +887,9 @@ namespace hex::plugin::builtin {
bool popWorkspace = false;
// Set the ImNodes context to the current workspace context
auto prevContext = ImNodes::GetCurrentContext();
ImNodes::SetCurrentContext(workspace.context.get());
ON_SCOPE_EXIT { ImNodes::SetCurrentContext(prevContext); };
this->drawContextMenus(workspace);