mirror of
				https://github.com/ocornut/imgui.git
				synced 2025-10-26 12:27:30 +00:00 
			
		
		
		
	Fixed non-popup child windows not honoring the HiddenFrames flag (can't see a reason). Docking relies on this.
This commit is contained in:
		| @@ -2867,7 +2867,7 @@ static void AddWindowToRenderList(ImVector<ImDrawList*>& out_render_list, ImGuiW | |||||||
|         ImGuiWindow* child = window->DC.ChildWindows[i]; |         ImGuiWindow* child = window->DC.ChildWindows[i]; | ||||||
|         if (!child->Active) // clipped children may have been marked not active |         if (!child->Active) // clipped children may have been marked not active | ||||||
|             continue; |             continue; | ||||||
|         if ((child->Flags & ImGuiWindowFlags_Popup) && child->HiddenFrames > 0) |         if (child->HiddenFrames > 0) | ||||||
|             continue; |             continue; | ||||||
|         AddWindowToRenderList(out_render_list, child); |         AddWindowToRenderList(out_render_list, child); | ||||||
|     } |     } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 omar
					omar