diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs index 1cfc3b6c0..7cc46434f 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs @@ -47,6 +47,9 @@ public partial class QuickAccessLinkSettings : INotifyPropertyChanged } } + public bool IsFileSelected { get; set; } = true; // Default to File + public bool IsFolderSelected { get; set; } + private bool IsEdit { get; } private AccessLink SelectedAccessLink { get; } @@ -162,12 +165,4 @@ public partial class QuickAccessLinkSettings : INotifyPropertyChanged { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } - - public bool IsFileSelected { get; set; } = true; // Default to File - public bool IsFolderSelected { get; set; } - - public QuickAccessLinkSettings() - { - InitializeComponent(); - } }