minimize is modified

This commit is contained in:
병준 박 2019-12-04 18:10:22 +09:00
parent aac8802822
commit 0a419bcc15

View File

@ -88,7 +88,7 @@ export class AppWindow {
this.window.on(ElectronBrowserWindowChannel.Minimize, e => { this.window.on(ElectronBrowserWindowChannel.Minimize, e => {
if (!quitting) { if (!quitting) {
e.preventDefault(); e.preventDefault();
this.window.hide(); this.window.minimize();
} }
}); });
this.window.on(ElectronBrowserWindowChannel.Close, e => { this.window.on(ElectronBrowserWindowChannel.Close, e => {