mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Fixed Begin() returning true on collapsed windows that loaded settings #176
This commit is contained in:
parent
e03d2b2900
commit
b61b311772
@ -3408,7 +3408,7 @@ bool ImGui::Begin(const char* name, bool* p_opened, const ImVec2& size_on_first_
|
||||
window->Visible = false;
|
||||
|
||||
// Return false if we don't intend to display anything to allow user to perform an early out optimization
|
||||
window->SkipItems = (window->Collapsed || !window->Visible) && window->AutoFitFrames == 0;
|
||||
window->SkipItems = (window->Collapsed || !window->Visible) && window->AutoFitFrames <= 0;
|
||||
return !window->SkipItems;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user