Disable scroll-by-page.

This commit is contained in:
Bartosz Taudul 2024-09-20 19:50:30 +02:00
parent a47a51453c
commit 39497ab77b
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -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()