mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
input: kitty: always use shifted key when it's the result of a compose
Closes #1987
This commit is contained in:
parent
605694bc93
commit
8d2627b1ef
1 changed files with 1 additions and 1 deletions
2
input.c
2
input.c
|
|
@ -1411,7 +1411,7 @@ emit_escapes:
|
|||
size_t left = sizeof(buf);
|
||||
size_t bytes;
|
||||
|
||||
const int key = unshifted > 0 && isc32print(unshifted) ? unshifted : shifted;
|
||||
const int key = unshifted > 0 && isc32print(unshifted) && !composed ? unshifted : shifted;
|
||||
const int alternate = shifted;
|
||||
|
||||
if (final == 'u' || final == '~') {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue