Fix #3299
This commit is contained in:
parent
41533bffdd
commit
de0f225c45
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ encode_function_key(const KeyEvent *ev, char *output) {
|
|||
char csi_trailer = 'u';
|
||||
uint32_t key_number = ev->key;
|
||||
|
||||
if (ev->cursor_key_mode && !ev->disambiguate && !ev->report_all_event_types) {
|
||||
if (ev->cursor_key_mode && !ev->disambiguate && !ev->report_all_event_types && !ev->mods.value) {
|
||||
switch(key_number) {
|
||||
case GLFW_FKEY_UP: SIMPLE("\x1bOA");
|
||||
case GLFW_FKEY_DOWN: SIMPLE("\x1bOB");
|
||||
|
|
|
|||
Loading…
Reference in a new issue