Status window launches by default on debug builds

zmq
Sean McArdle 2016-12-29 16:22:48 -08:00
parent b1ed556b5f
commit 05b7b06af4
1 changed files with 5 additions and 0 deletions

View File

@ -51,7 +51,12 @@ namespace WifiSitterGui.ViewModel
_eventAggregator?.GetEvent<ReloadWhitelistEvent>().Subscribe(() => { RequestReloadWhitelist(); });
_windowVM = WindowVM;
Intitialize();
#if DEBUG
this.LaunchSettingsWindow.Execute(null);
#endif
}