From f39c641bb99e550cc7bcf84f36684d322b388604 Mon Sep 17 00:00:00 2001 From: Dean Campbell Date: Fri, 30 Oct 2020 10:28:45 -0700 Subject: [PATCH 1/2] Disable start minimized when auto launch disabled --- .../options-app-section/options-app-section.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts b/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts index a581eabe..17e90616 100644 --- a/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts +++ b/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts @@ -66,6 +66,7 @@ export class OptionsAppSectionComponent implements OnInit { this.wowupService.startWithSystem = evt.checked; if (!evt.checked) { this.startMinimized = false; + this.wowupService.startMinimized = false; } }; From 242bfa613eaa2d1047342f625f636b22be8bc192 Mon Sep 17 00:00:00 2001 From: Dean Campbell Date: Fri, 30 Oct 2020 14:38:32 -0700 Subject: [PATCH 2/2] Mimic discord launch options --- .../options-app-section/options-app-section.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts b/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts index 17e90616..7a420d42 100644 --- a/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts +++ b/wowup-electron/src/app/components/options-app-section/options-app-section.component.ts @@ -66,7 +66,8 @@ export class OptionsAppSectionComponent implements OnInit { this.wowupService.startWithSystem = evt.checked; if (!evt.checked) { this.startMinimized = false; - this.wowupService.startMinimized = false; + } else { + this.startMinimized = this.wowupService.startMinimized; } };