mirror of https://github.com/keeweb/keeweb
Make titlebarStyle const
parent
6d622ff2c2
commit
eda7ebf6ae
|
@ -110,7 +110,7 @@ function setAppOptions() {
|
|||
}
|
||||
|
||||
function createMainWindow() {
|
||||
let titlebarStyle = JSON.parse( fs.readFileSync(appSettingsFileName, 'utf8') ).titlebarStyle;
|
||||
const titlebarStyle = JSON.parse(fs.readFileSync(appSettingsFileName, 'utf8')).titlebarStyle;
|
||||
mainWindow = new electron.BrowserWindow({
|
||||
show: false,
|
||||
width: 1000, height: 700, minWidth: 700, minHeight: 400,
|
||||
|
|
Loading…
Reference in New Issue