bugfix :: electron-storage rename permision error.
This commit is contained in:
parent
2ceec93b36
commit
a522611358
|
@ -122,11 +122,14 @@ export class AppWindow {
|
|||
// can be tidied up once https://github.com/electron/electron/issues/12971
|
||||
// has been confirmed as resolved
|
||||
this.window.once(ElectronBrowserWindowChannel.ReadyToShow, () => {
|
||||
if (appStorage.startupHideWindow) {
|
||||
this.window.close();
|
||||
} else {
|
||||
this.window.show();
|
||||
}
|
||||
this.window.close();
|
||||
setTimeout(() => {
|
||||
if (appStorage.startupHideWindow) {
|
||||
this.window.close();
|
||||
} else {
|
||||
this.window.show();
|
||||
}
|
||||
}, 500);
|
||||
this.window.on(ElectronBrowserWindowChannel.Unmaximize, () => {
|
||||
setTimeout(() => {
|
||||
const bounds = this.window.getBounds();
|
||||
|
|
Loading…
Reference in New Issue
Block a user