mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-05-13 07:10:35 +01:00
input-capture: fix build
This commit is contained in:
parent
4cbb7c508c
commit
7206966a45
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ void CInputCaptureProtocol::sendKeymap(SP<IKeyboard> keyboard, const UP<CHyprlan
|
|||
uint32_t size;
|
||||
if (keyboard) {
|
||||
format = HYPRLAND_INPUT_CAPTURE_MANAGER_V1_KEYMAP_FORMAT_XKB_V1;
|
||||
fd = keyboard->xkbKeymapFD;
|
||||
fd = keyboard->xkbKeymapFD.get();
|
||||
size = keyboard->xkbKeymapString.length() + 1;
|
||||
} else {
|
||||
format = HYPRLAND_INPUT_CAPTURE_MANAGER_V1_KEYMAP_FORMAT_NO_KEYMAP;
|
||||
|
|
Loading…
Reference in a new issue