mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 21:21:06 +01:00 
			
		
		
		
	Columns: Fixed a bug introduced in 1.51 where columns would affect the contents size of their container, often creating feedback loops when ImGuiWindowFlags_AlwaysAutoResize was used. (#1760)
This commit is contained in:
		| @@ -12666,7 +12666,7 @@ void ImGui::EndColumns() | ||||
|     columns->LineMaxY = ImMax(columns->LineMaxY, window->DC.CursorPos.y); | ||||
|     window->DC.CursorPos.y = columns->LineMaxY; | ||||
|     if (!(columns->Flags & ImGuiColumnsFlags_GrowParentContentsSize)) | ||||
|         window->DC.CursorMaxPos.x = ImMax(columns->StartMaxPosX, columns->MaxX);  // Restore cursor max pos, as columns don't grow parent | ||||
|         window->DC.CursorMaxPos.x = columns->StartMaxPosX;  // Restore cursor max pos, as columns don't grow parent | ||||
|  | ||||
|     // Draw columns borders and handle resize | ||||
|     bool is_being_resized = false; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user