remove idiotic guard in processMouseDownNormal

This commit is contained in:
vaxerski 2022-12-05 14:30:04 +00:00
parent ac0e675f3b
commit 20b91f58f8
1 changed files with 1 additions and 7 deletions

View File

@ -378,13 +378,7 @@ void CInputManager::setClickMode(eClickBehaviorMode mode) {
}
void CInputManager::processMouseDownNormal(wlr_pointer_button_event* e) {
const auto PKEYBOARD = wlr_seat_get_keyboard(g_pCompositor->m_sSeat.seat);
if (!PKEYBOARD) { // ???
Debug::log(ERR, "No active keyboard in processMouseDownNormal??");
return;
}
// notify the keybind manager
static auto *const PPASSMOUSE = &g_pConfigManager->getConfigValuePtr("binds:pass_mouse_when_bound")->intValue;
const auto PASS = g_pKeybindManager->onMouseEvent(e);