-
-
Notifications
You must be signed in to change notification settings - Fork 11.2k
Closed
Description
Rendering of ImGui::ColorEdit3
within a Dock, used to render like this:
But after the change from 9b0c26b, (lines 5009, 5010 in imgui_widget.cpp
)
const float text_offset_x = (flags & ImGuiColorEditFlags_NoInputs) ? w_button : w_full + style.ItemInnerSpacing.x;
window->DC.CursorPos = ImVec2(pos.x + text_offset_x, pos.y + style.FramePadding.y);
were changed for the following line
SameLine(0.0f, style.ItemInnerSpacing.x);
And the GUI item now renders as the following
Maybe there is a misusage of the Docker on my side, but this is an unfortunate side effect.
Is there something I can do to recover the original behavior?
Kind regards
-mkl