From dbabfb34b4e32eaf15277da80c95e87f3d5de9d9 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Tue, 16 May 2023 10:17:03 +0100 Subject: [PATCH] Move multi instance launching to Integrations tab i don't remember my justfiication for putting this under the behaviour tab? integrations makes a lot more sense imo --- Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs | 6 ------ Bloxstrap/UI/Menu/ViewModels/IntegrationsViewModel.cs | 6 ++++++ Bloxstrap/UI/Menu/Views/Pages/BehaviourPage.xaml | 9 --------- Bloxstrap/UI/Menu/Views/Pages/IntegrationsPage.xaml | 9 +++++++++ 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs b/Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs index 518cafd..d28256f 100644 --- a/Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs +++ b/Bloxstrap/UI/Menu/ViewModels/BehaviourViewModel.cs @@ -13,11 +13,5 @@ get => App.Settings.Prop.CheckForUpdates; set => App.Settings.Prop.CheckForUpdates = value; } - - public bool MultiInstanceLaunchingEnabled - { - get => App.Settings.Prop.MultiInstanceLaunching; - set => App.Settings.Prop.MultiInstanceLaunching = value; - } } } diff --git a/Bloxstrap/UI/Menu/ViewModels/IntegrationsViewModel.cs b/Bloxstrap/UI/Menu/ViewModels/IntegrationsViewModel.cs index ba99065..d461b72 100644 --- a/Bloxstrap/UI/Menu/ViewModels/IntegrationsViewModel.cs +++ b/Bloxstrap/UI/Menu/ViewModels/IntegrationsViewModel.cs @@ -72,6 +72,12 @@ namespace Bloxstrap.UI.Menu.ViewModels set => App.Settings.Prop.ShowServerDetails = value; } + public bool MultiInstanceLaunchingEnabled + { + get => App.Settings.Prop.MultiInstanceLaunching; + set => App.Settings.Prop.MultiInstanceLaunching = value; + } + public ObservableCollection CustomIntegrations { get => App.Settings.Prop.CustomIntegrations; diff --git a/Bloxstrap/UI/Menu/Views/Pages/BehaviourPage.xaml b/Bloxstrap/UI/Menu/Views/Pages/BehaviourPage.xaml index 76d73a0..d87e71e 100644 --- a/Bloxstrap/UI/Menu/Views/Pages/BehaviourPage.xaml +++ b/Bloxstrap/UI/Menu/Views/Pages/BehaviourPage.xaml @@ -30,14 +30,5 @@ - - - - - - - - - diff --git a/Bloxstrap/UI/Menu/Views/Pages/IntegrationsPage.xaml b/Bloxstrap/UI/Menu/Views/Pages/IntegrationsPage.xaml index 0a88e82..5f9021b 100644 --- a/Bloxstrap/UI/Menu/Views/Pages/IntegrationsPage.xaml +++ b/Bloxstrap/UI/Menu/Views/Pages/IntegrationsPage.xaml @@ -42,6 +42,15 @@ + + + + + + + + +