Merge pull request #230 from bazuin-32/main

Resolves #204. Enables numlock on startup when configured to do so
This commit is contained in:
vaxerski 2022-06-16 18:33:37 +01:00 committed by GitHub
commit 354e265128
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -87,6 +87,7 @@ extern "C" {
#include "../wlroots/include/wlr/render/wlr_texture.h"
#include "../wlroots/include/wlr/types/wlr_pointer_constraints_v1.h"
#include "../wlroots/include/wlr/types/wlr_relative_pointer_v1.h"
#include "../wlroots/include/wlr/interfaces/wlr_keyboard.h"
}
#undef class

View File

@ -309,7 +309,7 @@ void CInputManager::setKeyboardLayout() {
}
if (wlrMods.locked != 0) {
wlr_seat_keyboard_notify_modifiers(g_pCompositor->m_sSeat.seat, &wlrMods);
wlr_keyboard_notify_modifiers(g_pInputManager->m_pActiveKeyboard->keyboard->keyboard, 0, 0, wlrMods.locked, 0);
}
xkb_keymap_unref(KEYMAP);