|
@@ -1000,8 +1000,8 @@ bool ImGui::ScrollbarEx(const ImRect& bb_frame, ImGuiID id, ImGuiAxis axis, ImS6
|
|
if (g.ActiveIdIsJustActivated)
|
|
if (g.ActiveIdIsJustActivated)
|
|
{
|
|
{
|
|
// On initial click calculate the distance between mouse and the center of the grab
|
|
// On initial click calculate the distance between mouse and the center of the grab
|
|
- g.ScrollbarSeekMode = (short)held_dir;
|
|
|
|
- g.ScrollbarClickDeltaToGrabCenter = (g.ScrollbarSeekMode == 0.0f) ? clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f : 0.0f;
|
|
|
|
|
|
+ g.ScrollbarSeekMode = g.IO.KeyShift ? 0 : (short)held_dir;
|
|
|
|
+ g.ScrollbarClickDeltaToGrabCenter = (g.ScrollbarSeekMode == 0 && !g.IO.KeyShift) ? clicked_v_norm - grab_v_norm - grab_h_norm * 0.5f : 0.0f;
|
|
}
|
|
}
|
|
|
|
|
|
// Apply scroll (p_scroll_v will generally point on one member of window->Scroll)
|
|
// Apply scroll (p_scroll_v will generally point on one member of window->Scroll)
|