config: do mouse binding collision detection after loading the conf

This commit is contained in:
Daniel Eklöf 2021-12-05 16:30:01 +01:00
parent bb4b4ae43d
commit 4c50c44cf7
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 238 additions and 226 deletions

View file

@ -369,7 +369,7 @@ conf_modifiers_to_mask(const struct seat *seat,
if (seat->kbd.mod_alt != XKB_MOD_INVALID)
mods |= modifiers->alt << seat->kbd.mod_alt;
if (seat->kbd.mod_super != XKB_MOD_INVALID)
mods |= modifiers->meta << seat->kbd.mod_super;
mods |= modifiers->super << seat->kbd.mod_super;
return mods;
}