1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 19:48:34 +02:00

Fix SetColumnOffset() subtracting a bool value instead of scrollbar width.

This commit is contained in:
Dale Kim 2015-02-23 13:35:55 -06:00
parent 3f4924ee2b
commit 72d10d3baa

View File

@ -6378,7 +6378,7 @@ void ImGui::SetColumnOffset(int column_index, float offset)
const ImGuiID column_id = window->DC.ColumnsSetID + ImGuiID(column_index);
const float min_x = window->DC.ColumnsStartX;
const float max_x = window->Size.x - (window->ScrollbarY);// - window->WindowPadding().x;
const float max_x = window->Size.x - (g.Style.ScrollBarWidth);// - window->WindowPadding().x;
const float t = (offset - min_x) / (max_x - min_x);
window->StateStorage.SetFloat(column_id, t);
window->DC.ColumnsOffsetsT[column_index] = t;