fix within key positioning

This commit is contained in:
oneshinyboi 2026-03-23 20:58:11 +00:00
parent 9651152b8b
commit e91b5875f6
No known key found for this signature in database
GPG Key ID: A494E206A095F0C0
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ impl SwipeTypingManager {
let within_key_pos_from_center = Vec2 {
x: within_key_pos_normalized.x - 0.5,
y: 0.5 - within_key_pos_normalized.y,
y: within_key_pos_normalized.y - 0.5,
};
let key_dimensions = Vec2 {
x: QwertyKeyboardGrid::get_key_width() as f32,