mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 21:21:06 +01:00 
			
		
		
		
	Viewport: Increased threshold for setting ImGuiViewportFlags_NoFocusOnAppearing. (#1542), 2 doesn't seem enough with some docking setup.
This commit is contained in:
		| @@ -7552,7 +7552,7 @@ void ImGui::UpdatePlatformWindows() | ||||
|         // Show window. On startup ensure platform window don't get focus | ||||
|         if (is_new_window) | ||||
|         { | ||||
|             if (g.FrameCount < 2) | ||||
|             if (g.FrameCount < 3) // Give a few frames for the application to stabilize (nested contents may lead to viewport being created a few frames late) | ||||
|                 viewport->Flags |= ImGuiViewportFlags_NoFocusOnAppearing; | ||||
|             g.PlatformIO.Platform_ShowWindow(viewport); | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user