From a8be0bc91efa1b14da5bf196b829e0462aecff96 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 27 Sep 2022 22:13:31 +0200 Subject: [PATCH] Disable cursor blinking. --- profiler/src/ImGuiContext.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/ImGuiContext.cpp b/profiler/src/ImGuiContext.cpp index 2858a684..b7d88ff2 100644 --- a/profiler/src/ImGuiContext.cpp +++ b/profiler/src/ImGuiContext.cpp @@ -10,6 +10,7 @@ ImGuiTracyContext::ImGuiTracyContext() ImGuiIO& io = ImGui::GetIO(); io.IniFilename = m_iniFilename.c_str(); io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard | ImGuiConfigFlags_DockingEnable; + io.ConfigInputTextCursorBlink = false; } ImGuiTracyContext::~ImGuiTracyContext()