From 6fe59c92c43c863bcffcd1edff59cf50562ffc44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Sat, 23 Jul 2022 00:09:51 +0200 Subject: [PATCH] Make sure to force unload a preloaded screen --- monarch/monarch.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monarch/monarch.lua b/monarch/monarch.lua index ac562e0..fc551d8 100644 --- a/monarch/monarch.lua +++ b/monarch/monarch.lua @@ -1087,7 +1087,7 @@ function M.unload(id, cb) end run_coroutine(screen, when_unloaded, function() change_context(screen) - unload(screen) + unload(screen, true) end) end) return true -- return true for legacy reasons (before queue existed)