Fix tooltip data needlessly leaking into .ini file

This commit is contained in:
ocornut 2014-08-14 15:43:58 +01:00
parent a8d3b045b7
commit f33eb89018

View file

@ -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);
}