From 76b9b7319d02aac0e6cbc9f5f134639defa4e888 Mon Sep 17 00:00:00 2001 From: David Martin Date: Mon, 26 Oct 2020 05:09:41 -0500 Subject: [PATCH] Check the layout to the saved layout forgot to change this if statement to check against a variable that actually exists --- public/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/script.js b/public/js/script.js index f57aaf37a..bb21c00be 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -344,7 +344,7 @@ function activateFunbox(funbox, mode) { } if (funbox !== "layoutfluid" || mode !== "script") { - if (config.layout !== memoryFunboxKeyboardLayout) { + if (config.layout !== config.layoutBeforeLayoutfluid) { changeLayout(config.layoutBeforeLayoutfluid); } }