diff --git a/web/js/WebPPTListener.ts b/web/js/WebPPTListener.ts index 391cdbe0..92ec8883 100644 --- a/web/js/WebPPTListener.ts +++ b/web/js/WebPPTListener.ts @@ -82,7 +82,8 @@ namespace ppt { current_state.special[SpecialKey.WINDOWS] = false; for(const code of Object.keys(current_state)) - delete current_state[code]; + if(code !== "special") + delete current_state[code]; for(const hook of key_hooks_active) hook.callback_release();