From 94c52d21ff67d3a47b5e1cf8ae8c530657fae727 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 11 Nov 2023 17:07:02 -0500 Subject: Add a special symbol for the tab key --- test/test_utils.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test') diff --git a/test/test_utils.h b/test/test_utils.h index 80f28a0..19ad5ba 100644 --- a/test/test_utils.h +++ b/test/test_utils.h @@ -127,6 +127,8 @@ keyString(const uint32_t key) switch (key) { case PUGL_KEY_BACKSPACE: return "BACKSPACE"; + case PUGL_KEY_TAB: + return "TAB"; case PUGL_KEY_ENTER: return "ENTER"; case PUGL_KEY_ESCAPE: -- cgit v1.2.1