From 8c4e867760eb20e3cdf997a301c8f8672c01e380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Mon, 14 Sep 2020 18:06:17 +0200 Subject: [PATCH] Fix strfkey with focus events --- termo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/termo.c b/termo.c index b39fce6..e78d1b8 100644 --- a/termo.c +++ b/termo.c @@ -1577,6 +1577,7 @@ termo_strfkey_generic (termo_t *tk, char *buffer, size_t len, } case TERMO_TYPE_FOCUS: l = snprintf (buffer + pos, len - pos, "Focus(%d)", key->code.focused); + break; case TERMO_TYPE_POSITION: l = snprintf (buffer + pos, len - pos, "Position"); break;