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

Commit 53fbdba

Browse files
authored
Fix issue #861 (#869)
1 parent 118516f commit 53fbdba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/classes/filesystem.class.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,10 +361,10 @@ class FilesystemDisplay {
361361
}
362362

363363
if (e.type === "edex-theme") {
364-
cmd = `window.themeChanger('${e.name.slice(0, -5)}')`;
364+
cmd = `window.themeChanger("${e.name.slice(0, -5)}")`;
365365
}
366366
if (e.type === "edex-kblayout") {
367-
cmd = `window.remakeKeyboard('${e.name.slice(0, -5)}')`;
367+
cmd = `window.remakeKeyboard("${e.name.slice(0, -5)}")`;
368368
}
369369
if (e.type === "edex-settings") {
370370
cmd = `window.openSettings()`;

0 commit comments

Comments
 (0)