From e8c8d5d4b2e4ae1d741f951d51d52b8ee11fb148 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Fri, 19 Dec 2025 10:28:43 +0100 Subject: [PATCH] Fix alt release after alt-tab --- paint/sources/base.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/paint/sources/base.ts b/paint/sources/base.ts index 615f9299..8e617360 100644 --- a/paint/sources/base.ts +++ b/paint/sources/base.ts @@ -73,8 +73,8 @@ function base_init() { function() {}, // Pause function() { // Background // Release keys after alt-tab / win-tab - keyboard_up_listener(key_code_t.ALT); - keyboard_up_listener(key_code_t.WIN); + _key_up(key_code_t.ALT, null); + _key_up(key_code_t.WIN, null); }, function() { // Shutdown /// if (arm_android || arm_ios)