mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05: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;
|
||||
}
|
||||
|
||||
if (mods & ~consumed)
|
||||
if (mods & ~consumed & ~locked)
|
||||
return;
|
||||
|
||||
char32_t wc = xkb_state_key_get_utf32(seat->kbd.xkb_state, key);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue