diff --git a/src/renderer/main/vueapp.js b/src/renderer/main/vueapp.js index e049ff71..adbcb950 100644 --- a/src/renderer/main/vueapp.js +++ b/src/renderer/main/vueapp.js @@ -581,6 +581,9 @@ const app = new Vue({ if (this.cfg.visual.theme != "default.less" && this.cfg.visual.theme != "") { this.setTheme(this.cfg.visual.theme) } + if (this.cfg.visual.styles.length != 0) { + this.reloadStyles() + } if (this.platform == "darwin") { this.chrome.windowControlPosition = "left" @@ -899,9 +902,6 @@ const app = new Vue({ this.$forceUpdate() }, 500) ipcRenderer.invoke("renderer-ready", true) - if (this.cfg.visual.styles.length != 0) { - this.reloadStyles() - } document.querySelector("#LOADER").remove() if (this.cfg.general.themeUpdateNotification) { this.checkForThemeUpdates()