1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-07-01 13:36:46 +02:00

Fix clashing key bindings

Scrolling the groupchat peer list now uses ctrl+up and down
This commit is contained in:
jfreegman
2020-10-13 19:52:43 -04:00
parent 3015138a5a
commit e428879beb
9 changed files with 8 additions and 40 deletions

View File

@ -609,8 +609,10 @@ static struct key_sequence_codes {
wchar_t *code;
wint_t key;
} Keys[] = {
{ L"[1;5D", T_KEY_C_LEFT },
{ L"[1;5A", T_KEY_C_UP },
{ L"[1;5B", T_KEY_C_DOWN },
{ L"[1;5C", T_KEY_C_RIGHT },
{ L"[1;5D", T_KEY_C_LEFT },
{ NULL, 0 }
};