Initial settings tab

This commit is contained in:
Geomitron
2020-02-13 22:33:14 -05:00
parent c6b549340b
commit 49cba89a11
14 changed files with 204 additions and 47 deletions

View File

@@ -11,14 +11,14 @@ export class ToolbarComponent {
constructor(private electronService: ElectronService) { }
minimize() {
this.electronService.remote.getCurrentWindow().minimize()
this.electronService.currentWindow.minimize()
}
maximize() {
this.electronService.remote.getCurrentWindow().maximize()
this.electronService.currentWindow.maximize()
}
close() {
this.electronService.remote.app.quit()
this.electronService.quit()
}
}