From 39497ab77b878b61479b6925aedaf144da4ee34c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 20 Sep 2024 19:50:30 +0200 Subject: [PATCH] Disable scroll-by-page. --- profiler/src/ImGuiContext.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/ImGuiContext.cpp b/profiler/src/ImGuiContext.cpp index f4e0f6de..8e78d2df 100644 --- a/profiler/src/ImGuiContext.cpp +++ b/profiler/src/ImGuiContext.cpp @@ -11,6 +11,7 @@ ImGuiTracyContext::ImGuiTracyContext() io.IniFilename = m_iniFilename.c_str(); io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard | ImGuiConfigFlags_DockingEnable; io.ConfigInputTextCursorBlink = false; + io.ConfigScrollbarScrollByPage = false; } ImGuiTracyContext::~ImGuiTracyContext()