From 242bfa613eaa2d1047342f625f636b22be8bc192 Mon Sep 17 00:00:00 2001 From: Dean Campbell Date: Fri, 30 Oct 2020 14:38:32 -0700 Subject: [PATCH] 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; } };