fix for user presets existing preventing cider from starting
This commit is contained in:
parent
1fa02ad99b
commit
ef4853cfc5
3 changed files with 5 additions and 0 deletions
|
@ -210,6 +210,7 @@
|
|||
"settings.option.visual.windowBackgroundStyle": "Window Background Style", // Toggle
|
||||
"settings.header.visual.windowBackgroundStyle.none": "None",
|
||||
"settings.header.visual.windowBackgroundStyle.artwork": "Artwork",
|
||||
"settings.header.visual.windowBackgroundStyle.image": "Image",
|
||||
"settings.option.visual.animatedArtwork": "Animated Artwork", // Dropdown
|
||||
"settings.header.visual.animatedArtwork.always": "Always",
|
||||
"settings.header.visual.animatedArtwork.limited": "Limited to pages and special entries",
|
||||
|
|
|
@ -132,6 +132,9 @@ export class ConfigStore {
|
|||
if (key.includes('migrations')) {
|
||||
continue;
|
||||
}
|
||||
if(source[key] instanceof Array) {
|
||||
continue
|
||||
}
|
||||
if (source[key] instanceof Object) Object.assign(source[key], this.mergeStore(target[key], source[key]))
|
||||
}
|
||||
// Join `target` and modified `source`
|
||||
|
|
|
@ -78,6 +78,7 @@
|
|||
<select class="md-select" @change="$root.getNowPlayingArtworkBG(undefined, true)" v-model="app.cfg.visual.window_background_style">
|
||||
<option value="none">{{$root.getLz('settings.header.visual.windowBackgroundStyle.none')}}</option>
|
||||
<option value="artwork">{{$root.getLz('settings.header.visual.windowBackgroundStyle.artwork')}}</option>
|
||||
<option value="image">{{$root.getLz('settings.header.visual.windowBackgroundStyle.image')}}</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue