From a95ce870db1ba614d761a45a6f1b6399aef1186f Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Tue, 11 Apr 2023 13:19:10 +0100 Subject: [PATCH] Auto change icon to custom when changing location MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit i dont know what the issue id for this is because im on a plane like 999999 feet in the air 😭 --- Bloxstrap/ViewModels/AppearanceViewModel.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bloxstrap/ViewModels/AppearanceViewModel.cs b/Bloxstrap/ViewModels/AppearanceViewModel.cs index 320a9c8..818085f 100644 --- a/Bloxstrap/ViewModels/AppearanceViewModel.cs +++ b/Bloxstrap/ViewModels/AppearanceViewModel.cs @@ -118,7 +118,10 @@ namespace Bloxstrap.ViewModels get => App.Settings.Prop.BootstrapperIconCustomLocation; set { + App.Settings.Prop.BootstrapperIcon = BootstrapperIcon.IconCustom; App.Settings.Prop.BootstrapperIconCustomLocation = value; + + OnPropertyChanged(nameof(Icon)); OnPropertyChanged(nameof(IconPreviewSource)); } }