mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	Popup: clicking on empty space also close popup #126
This commit is contained in:
		@@ -3309,7 +3309,7 @@ bool ImGui::Begin(const char* name, bool* p_opened, const ImVec2& size_on_first_
 | 
			
		||||
        }
 | 
			
		||||
        if (window->Flags & ImGuiWindowFlags_Popup)
 | 
			
		||||
        {
 | 
			
		||||
            if (g.FocusedWindow != window)
 | 
			
		||||
            if ((g.IO.MouseClicked[0] && (!g.HoveredWindow || g.HoveredWindow->RootWindow != window)) || (!g.FocusedWindow || g.FocusedWindow->RootWindow != window))
 | 
			
		||||
                if (p_opened)
 | 
			
		||||
                    *p_opened = false;
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user