Skip to content
This repository has been archived by the owner on Oct 22, 2021. It is now read-only.

Commit

Permalink
Fix issue #861 (#869)
Browse files Browse the repository at this point in the history
  • Loading branch information
Animus-Surge committed Nov 9, 2020
1 parent 118516f commit 53fbdba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/classes/filesystem.class.js
Expand Up @@ -361,10 +361,10 @@ class FilesystemDisplay {
}

if (e.type === "edex-theme") {
cmd = `window.themeChanger('${e.name.slice(0, -5)}')`;
cmd = `window.themeChanger("${e.name.slice(0, -5)}")`;
}
if (e.type === "edex-kblayout") {
cmd = `window.remakeKeyboard('${e.name.slice(0, -5)}')`;
cmd = `window.remakeKeyboard("${e.name.slice(0, -5)}")`;
}
if (e.type === "edex-settings") {
cmd = `window.openSettings()`;
Expand Down

0 comments on commit 53fbdba

Please sign in to comment.