chore: add missing default for switches

This commit is contained in:
sithlord48
2025-07-03 19:43:56 -04:00
committed by Nick Bolton
parent 865365b2fa
commit 36e985d8ab
9 changed files with 27 additions and 0 deletions

View File

@ -1333,6 +1333,9 @@ void XWindowsScreen::handleSystemEvent(const Event &event)
LOG((CLOG_INFO "group change: %d", xkbEvent->state.group));
m_keyState->setActiveGroup((int32_t)xkbEvent->state.group);
return;
default:
return;
}
}
#endif