mirror of
				https://github.com/ocornut/imgui.git
				synced 2025-10-26 12:27:30 +00:00 
			
		
		
		
	Columns: Fixed previous commit (wrong chunk commited) (#125)
This commit is contained in:
		| @@ -10807,7 +10807,7 @@ void ImGui::NextColumn() | ||||
|     if (++columns->Current < columns->Count) | ||||
|     { | ||||
|         // Columns 1+ cancel out IndentX | ||||
|         window->DC.ColumnsOffsetX = columns->Columns[columns->Current].LockedOffset - window->DC.IndentX + g.Style.ItemSpacing.x; | ||||
|         window->DC.ColumnsOffsetX = GetColumnOffset(columns->Current) - window->DC.IndentX + g.Style.ItemSpacing.x; | ||||
|         window->DrawList->ChannelsSetCurrent(columns->Current); | ||||
|     } | ||||
|     else | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 omar
					omar