mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
Check the layout to the saved layout
forgot to change this if statement to check against a variable that actually exists
This commit is contained in:
parent
ccbbda3858
commit
76b9b7319d
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue