keyboard-group: two NULL keymaps are equal

Previously, creating a keyboard group without any keymap set would
result in an error:

    Device keymap does not match keyboard group's
This commit is contained in:
Simon Ser 2020-01-17 18:11:20 +01:00 committed by Brian Ashworth
parent 7c05933e51
commit b1a63bcd84
1 changed files with 3 additions and 0 deletions

View File

@ -82,6 +82,9 @@ struct wlr_keyboard_group *wlr_keyboard_group_from_wlr_keyboard(
}
static bool keymaps_match(struct xkb_keymap *km1, struct xkb_keymap *km2) {
if (!km1 && !km2) {
return true;
}
if (!km1 || !km2) {
return false;
}