aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_key_events.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ft_key_events.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ft_key_events.c b/src/ft_key_events.c
index e08e3d0..0609ba4 100644
--- a/src/ft_key_events.c
+++ b/src/ft_key_events.c
@@ -30,6 +30,8 @@ static uint16_t
(tmp_code == 3) ? (keycode = UINT16_MAX) : 0;
(tmp_code == 4) ? (keycode = UINT16_MAX) : 0;
(tmp_code == 5) ? (keycode = UINT16_MAX) : 0;
+ (tmp_code == FT_ESC_KEY) ? (keycode = FT_ESC_KEY) : 0;
+ (tmp_code == FT_F1_KEY) ? (keycode = FT_F1_KEY) : 0;
return (keycode);
}