Disable cursor blinking.

This commit is contained in:
Bartosz Taudul 2022-09-27 22:13:31 +02:00
parent 258fd73e6e
commit a8be0bc91e
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

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