From e406ce5aaba9a0df03380dc933614387e4e3966d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 29 Jul 2020 19:00:37 +0200 Subject: [PATCH] Fix typo. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 0e594cdb..ee6036e1 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1838,7 +1838,7 @@ void View::HandleZoneViewMouse( int64_t timespan, const ImVec2& wpos, float w, d } const auto hwheel_delta = io.MouseWheelH * 100.f; - if( ImGui::IsMouseDragging( 1, 0 ) || hwheel_delta != 0 ) + if( ImGui::IsMouseDragging( 1, 0 ) || hwheel_delta != 0 ) { m_pause = true; m_zoomAnim.active = false;