mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-22 05:33:45 -04:00
url-mode: allow locked modifiers while handling label letter input
This fixes an issue where labels couldn’t be activated if e.g. NumLock was enabled.
This commit is contained in:
parent
6ed9a31007
commit
dd03e10c6c
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ urls_input(struct seat *seat, struct terminal *term,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mods & ~consumed)
|
if (mods & ~consumed & ~locked)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
char32_t wc = xkb_state_key_get_utf32(seat->kbd.xkb_state, key);
|
char32_t wc = xkb_state_key_get_utf32(seat->kbd.xkb_state, key);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue