From d6c188d591da9d4d509d85b27d07c5521d71c39e Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Sun, 20 Feb 2022 14:31:22 +0200 Subject: Window: Unfreeze command affects all frozen windows --- src/ui/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/window.c b/src/ui/window.c index b0de0557..9d372019 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -1040,7 +1040,7 @@ iBool processEvent_Window(iWindow *d, const SDL_Event *ev) { mw->isDrawFrozen = iFalse; draw_MainWindow(mw); /* don't show a frame of placeholder content */ postCommand_App("media.player.update"); /* in case a player needs updating */ - return iTrue; + return iFalse; /* unfreeze all frozen windows */ } if (event.type == SDL_USEREVENT && isCommand_UserEvent(ev, "window.sysframe") && mw) { /* This command is sent on Android to update the keyboard height. */ -- cgit v1.2.3