-
Notifications
You must be signed in to change notification settings - Fork 664
Closed
Milestone
Description
when in fullscreen:
menubar visible: no cursor
menubar hidden: cursor visible
i was thinking maybe it's related to something in here
Shipwright/libultraship/libultraship/SohImGuiImpl.cpp
Lines 238 to 256 in 076887e
| void ShowCursor(bool hide, Dialogues d) { | |
| if (d == Dialogues::dLoadSettings) { | |
| GlobalCtx2::GetInstance()->GetWindow()->ShowCursor(hide); | |
| return; | |
| } | |
| if (d == Dialogues::dConsole && CVar_GetS32("gOpenMenuBar", 0)) { | |
| return; | |
| } | |
| if (!GlobalCtx2::GetInstance()->GetWindow()->IsFullscreen()) { | |
| oldCursorState = false; | |
| return; | |
| } | |
| if (oldCursorState != hide) { | |
| oldCursorState = hide; | |
| GlobalCtx2::GetInstance()->GetWindow()->ShowCursor(hide); | |
| } | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels