Avoid ringing the bell on focus events

This commit is contained in:
Přemysl Eric Janouch 2023-06-05 19:57:47 +02:00
parent c7a6e9ec36
commit ccb3974895
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

2
hex.c
View File

@ -1642,7 +1642,7 @@ app_process_termo_event (termo_key_t *event)
return app_process_action (binding->action);
// TODO: once we become an editor, use 0-9 a-f to overwrite nibbles
return false;
return event->type == TERMO_TYPE_FOCUS;
}
// --- Signals -----------------------------------------------------------------