mirror of
https://github.com/Drezil/imgui.git
synced 2025-08-13 15:33:13 +02:00
Shutdown() test for g.IO.Fonts not being NULL to allow workarounds in case of using multiple contexts #207
This commit is contained in:
@ -2124,7 +2124,8 @@ void ImGui::Shutdown()
|
|||||||
ImGui::MemFree(g.LogClipboard);
|
ImGui::MemFree(g.LogClipboard);
|
||||||
}
|
}
|
||||||
|
|
||||||
g.IO.Fonts->Clear();
|
if (g.IO.Fonts) // Testing for NULL to allow user to NULLify in case of running Shutdown() on multiple contexts. Bit hacky.
|
||||||
|
g.IO.Fonts->Clear();
|
||||||
|
|
||||||
g.Initialized = false;
|
g.Initialized = false;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user