This commit is contained in:
vapormusic 2022-09-10 00:45:23 +07:00
commit 58139b6ecc
2 changed files with 4 additions and 4 deletions

View file

@ -442,7 +442,7 @@ export class BrowserWindow {
break; break;
} }
nativeTheme.themeSource = utils.getStoreValue("visual.overrideDisplayTheme") nativeTheme.themeSource = utils.getStoreValue("visual.overrideDisplayTheme");
// Start the webserver for the browser window to load // Start the webserver for the browser window to load
// LocalFiles.DB.init() // LocalFiles.DB.init()
@ -1142,7 +1142,7 @@ export class BrowserWindow {
// Override light, dark // Override light, dark
ipcMain.on("changeDisplayTheme", (event, theme) => { ipcMain.on("changeDisplayTheme", (event, theme) => {
nativeTheme.themeSource = theme nativeTheme.themeSource = theme;
}); });
//Fullscreen //Fullscreen

View file

@ -200,7 +200,7 @@ export class Store {
accentColor: "#fc3c44", accentColor: "#fc3c44",
purplePodcastPlaybackBar: false, purplePodcastPlaybackBar: false,
maxElementScale: -1, // -1 default, anything else is a custom scale maxElementScale: -1, // -1 default, anything else is a custom scale
overrideDisplayTheme : "system" // system , dark, light overrideDisplayTheme: "system", // system , dark, light
}, },
lyrics: { lyrics: {
enable_mxm: true, enable_mxm: true,