Auto change icon to custom when changing location

i dont know what the issue id for this is because im on a plane like 999999 feet in the air 😭
This commit is contained in:
pizzaboxer 2023-04-11 13:19:10 +01:00
parent b7c591bc88
commit a95ce870db
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -118,7 +118,10 @@ namespace Bloxstrap.ViewModels
get => App.Settings.Prop.BootstrapperIconCustomLocation; get => App.Settings.Prop.BootstrapperIconCustomLocation;
set set
{ {
App.Settings.Prop.BootstrapperIcon = BootstrapperIcon.IconCustom;
App.Settings.Prop.BootstrapperIconCustomLocation = value; App.Settings.Prop.BootstrapperIconCustomLocation = value;
OnPropertyChanged(nameof(Icon));
OnPropertyChanged(nameof(IconPreviewSource)); OnPropertyChanged(nameof(IconPreviewSource));
} }
} }