From 6a7ca3cd42f66ca329403fc96ff8095d2cdf30ff Mon Sep 17 00:00:00 2001 From: Nick Fisher Date: Fri, 20 Jun 2025 18:33:47 +0800 Subject: [PATCH] add backtick key --- thermion_dart/lib/src/input/src/input_types.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thermion_dart/lib/src/input/src/input_types.dart b/thermion_dart/lib/src/input/src/input_types.dart index bbd5bb69..1083a8a9 100644 --- a/thermion_dart/lib/src/input/src/input_types.dart +++ b/thermion_dart/lib/src/input/src/input_types.dart @@ -89,8 +89,8 @@ class KeyEvent extends InputEvent { enum KeyEventType { down, up } -enum LogicalKey { w, a, s, d, g, r, shift, esc, del, space } +enum LogicalKey { w, a, s, d, g, r, x, y, z, shift, esc, del, space, backtick } -enum PhysicalKey { w, a, s, d, g, r, shift, esc, del, space } +enum PhysicalKey { w, a, s, d, g, r, x, y, z, shift, esc, del, space, backtick } enum InputAction { TRANSLATE, ROTATE, PICK, ZOOM, NONE }