Skip to content

Commit e1b5f55

Browse files
committed
fix mouse cursor
(oops forgot to set imgui config flag to deny it control over the cursor visibility)
1 parent 8517c1d commit e1b5f55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Managers/WindowMan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void WindowMan::Initialize() {
133133
ImGui::CreateContext();
134134
ImGuiIO& io = ImGui::GetIO();
135135
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad;
136-
io.ConfigFlags |= ImGuiConfigFlags_NavEnableGamepad;
136+
io.ConfigFlags |= ImGuiConfigFlags_NoMouseCursorChange;
137137

138138
ImGui::StyleColorsDark();
139139
ImGui_ImplSDL3_InitForOpenGL(m_PrimaryWindow.get(), m_GLContext.get());

0 commit comments

Comments
 (0)