diff options
Diffstat (limited to 'src/modules/instance.js')
| -rw-r--r-- | src/modules/instance.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/instance.js b/src/modules/instance.js index 76269ece..a0a9e9ac 100644 --- a/src/modules/instance.js +++ b/src/modules/instance.js @@ -377,7 +377,8 @@ const instance = { commit('setInstanceOption', { name: 'themeData', value: themeData }) // No need to apply theme if there's user theme already const { customTheme } = rootState.config - if (customTheme) return + const { themeApplied } = rootState.interface + if (customTheme || themeApplied) return // New theme presets don't have 'theme' property, they use 'source' const themeSource = themeData.source |
