Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-27 23:13:31 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-09-27 23:13:31 +0300
commita8be0bc91efa1b14da5bf196b829e0462aecff96 (patch)
tree06b726e82e43937de4073bd927eed83248d517a7 /profiler
parent258fd73e6e8b91e2ee86c895e18f7e63aa568897 (diff)
Disable cursor blinking.
Diffstat (limited to 'profiler')
-rw-r--r--profiler/src/ImGuiContext.cpp1
1 files changed, 1 insertions, 0 deletions
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()