Do not beep on focus changes
This commit is contained in:
parent
6bd8c1db2f
commit
6de940fe96
8
nncmpp.c
8
nncmpp.c
|
@ -2586,10 +2586,12 @@ app_init_bindings (const char *keymap,
|
||||||
static bool
|
static bool
|
||||||
app_process_termo_event (termo_key_t *event)
|
app_process_termo_event (termo_key_t *event)
|
||||||
{
|
{
|
||||||
if (event->type == TERMO_TYPE_FOCUS)
|
bool handled = false;
|
||||||
|
if ((handled = event->type == TERMO_TYPE_FOCUS))
|
||||||
{
|
{
|
||||||
g.focused = !!event->code.focused;
|
g.focused = !!event->code.focused;
|
||||||
app_invalidate ();
|
app_invalidate ();
|
||||||
|
// Senseless fall-through
|
||||||
}
|
}
|
||||||
|
|
||||||
struct binding dummy = { *event, 0, 0 }, *binding;
|
struct binding dummy = { *event, 0, 0 }, *binding;
|
||||||
|
@ -2599,7 +2601,7 @@ app_process_termo_event (termo_key_t *event)
|
||||||
sizeof *binding, app_binding_cmp)))
|
sizeof *binding, app_binding_cmp)))
|
||||||
return app_editor_process_action (binding->action);
|
return app_editor_process_action (binding->action);
|
||||||
if (event->type != TERMO_TYPE_KEY || event->modifiers != 0)
|
if (event->type != TERMO_TYPE_KEY || event->modifiers != 0)
|
||||||
return false;
|
return handled;
|
||||||
|
|
||||||
line_editor_insert (&g.editor, event->code.codepoint);
|
line_editor_insert (&g.editor, event->code.codepoint);
|
||||||
app_invalidate ();
|
app_invalidate ();
|
||||||
|
@ -2618,7 +2620,7 @@ app_process_termo_event (termo_key_t *event)
|
||||||
if (app_goto_tab ((n == 0 ? 10 : n) - 1))
|
if (app_goto_tab ((n == 0 ? 10 : n) - 1))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return handled;
|
||||||
}
|
}
|
||||||
|
|
||||||
// --- Current tab -------------------------------------------------------------
|
// --- Current tab -------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue