mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-10-31 21:21:06 +01:00 
			
		
		
		
	Fixed a warning. Storing RightMostStretchedColumn column for resizing code. Avoid clearing RightMostEnabledColumn in BeginTable() so resizing code can potentially use it. (Added regression tests for resize all to default imgui_dev)
This commit is contained in:
		| @@ -4458,7 +4458,7 @@ static void ShowDemoWindowTables() | ||||
|                 for (int column = 0; column < COLUMNS_COUNT; column++) | ||||
|                 { | ||||
|                     ImGui::TableSetColumnIndex(column); | ||||
|                     ImGui::Text("Cell %d,%d", 0, row); | ||||
|                     ImGui::Text("Cell %d,%d", column, row); | ||||
|                 } | ||||
|             } | ||||
|             ImGui::EndTable(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user