mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	Viewport: fix to allow multiple shutdown / calls to DestroyPlatformWindows(). (#2769)
This commit is contained in:
		@@ -11173,7 +11173,11 @@ void ImGui::DestroyPlatformWindow(ImGuiViewportP* viewport)
 | 
			
		||||
        if (g.PlatformIO.Platform_DestroyWindow)
 | 
			
		||||
            g.PlatformIO.Platform_DestroyWindow(viewport);
 | 
			
		||||
        IM_ASSERT(viewport->RendererUserData == NULL && viewport->PlatformUserData == NULL);
 | 
			
		||||
        viewport->PlatformWindowCreated = false;
 | 
			
		||||
 | 
			
		||||
        // Don't clear PlatformWindowCreated for the main viewport, as we initially set that up to true in Initialize()
 | 
			
		||||
        // The right-er way may be to leave it to the back-end to set this flag all-together, and made the flag public.
 | 
			
		||||
        if (viewport->ID != IMGUI_VIEWPORT_DEFAULT_ID)
 | 
			
		||||
            viewport->PlatformWindowCreated = false;
 | 
			
		||||
    }
 | 
			
		||||
    else
 | 
			
		||||
    {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user