diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-18 16:16:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-18 16:16:36 -0500 |
commit | 89fb0f14623aafb7ebc2d38a65022116e2f4fb03 (patch) | |
tree | 845bbb6144281a07c87c67b88b064053b4478bcd /rootston | |
parent | c91523c57888c257fa650ffa2574c470f7a788fe (diff) | |
parent | b5686355f3672769c300022a0b4267745594fe4f (diff) | |
download | wlroots-89fb0f14623aafb7ebc2d38a65022116e2f4fb03.tar.xz |
Merge pull request #501 from acrisci/keyboard-fixes
misc keyboard fixes
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/keyboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rootston/keyboard.c b/rootston/keyboard.c index 758a49fb..16071c0c 100644 --- a/rootston/keyboard.c +++ b/rootston/keyboard.c @@ -364,6 +364,7 @@ struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device, } wlr_keyboard_set_keymap(device->keyboard, keymap); + xkb_keymap_unref(keymap); xkb_context_unref(context); int repeat_rate = (config->repeat_rate > 0) ? config->repeat_rate : 25; |