From 0df5765e2f35a82fc034846e55dd1342686610c3 Mon Sep 17 00:00:00 2001 From: edwloef Date: Tue, 2 Dec 2025 10:02:37 +0100 Subject: [PATCH] fix incorrect cutoff in `to_latin` --- core/src/keyboard/key.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/keyboard/key.rs b/core/src/keyboard/key.rs index 5a1cd9ce..7e313794 100644 --- a/core/src/keyboard/key.rs +++ b/core/src/keyboard/key.rs @@ -65,7 +65,7 @@ impl Key { let mut chars = s.chars(); let c = chars.next()?; - if chars.next().is_none() && c <= '\u{ff}' { + if chars.next().is_none() && c < '\u{370}' { return Some(c); }