mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-16 18:25:01 +00:00
Fix tooltip data needlessly leaking into .ini file
This commit is contained in:
parent
a8d3b045b7
commit
f33eb89018
1 changed files with 1 additions and 1 deletions
|
@ -1783,7 +1783,7 @@ bool Begin(const char* name, bool* open, ImVec2 size, float fill_alpha, ImGuiWin
|
|||
ImGuiWindow* window = FindWindow(name);
|
||||
if (!window)
|
||||
{
|
||||
if (flags & ImGuiWindowFlags_ChildWindow)
|
||||
if (flags & (ImGuiWindowFlags_ChildWindow | ImGuiWindowFlags_Tooltip))
|
||||
{
|
||||
window = new ImGuiWindow(name, ImVec2(0,0), size);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue