1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 03:28:33 +02:00

Nav: DragBehavior removed bogus test (#323)

This commit is contained in:
ocornut 2016-08-01 22:23:56 +02:00
parent d0801057ba
commit 36fa2b9523

View File

@ -7627,9 +7627,9 @@ bool ImGui::DragBehavior(const ImRect& frame_bb, ImGuiID id, float* v, float v_s
if (g.ActiveIdSource == ImGuiInputSource_Nav)
{
adjust_delta = NavGetTweakDelta().x;
if (IsKeyDownMap(ImGuiKey_NavTweakFaster) && g.DragSpeedScaleFast >= 0.0f)
if (IsKeyDownMap(ImGuiKey_NavTweakFaster))
adjust_delta *= 10.0f;
if (IsKeyDownMap(ImGuiKey_NavTweakSlower) && g.DragSpeedScaleSlow >= 0.0f)
if (IsKeyDownMap(ImGuiKey_NavTweakSlower))
adjust_delta /= 10.0f;
}
adjust_delta *= v_speed;