mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 05:25:08 +00:00
Added assert to catch users using Begin/End without a first NewFrame
This commit is contained in:
parent
8a65d97bf0
commit
9b5493d1d9
1 changed files with 1 additions and 0 deletions
|
@ -2038,6 +2038,7 @@ bool ImGui::Begin(const char* name, bool* open, ImVec2 size, float fill_alpha, I
|
|||
{
|
||||
ImGuiState& g = GImGui;
|
||||
const ImGuiStyle& style = g.Style;
|
||||
IM_ASSERT(g.Initialized); // Forgot to call ImGui::NewFrame()
|
||||
|
||||
ImGuiWindow* window = FindWindow(name);
|
||||
if (!window)
|
||||
|
|
Loading…
Add table
Reference in a new issue