From 42dc582ec1fd5bc06aedf75030ec34e0227cd315 Mon Sep 17 00:00:00 2001 From: DB P Date: Tue, 17 Jun 2025 17:07:02 +0900 Subject: [PATCH] Change default value to file --- .../Views/QuickAccessLinkSettings.xaml.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs b/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs index 1e52ea81e..1cfc3b6c0 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs @@ -163,13 +163,11 @@ public partial class QuickAccessLinkSettings : INotifyPropertyChanged PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } - public bool IsFileSelected { get; set; } - public bool IsFolderSelected { get; set; } + public bool IsFileSelected { get; set; } = true; // Default to File + public bool IsFolderSelected { get; set; } public QuickAccessLinkSettings() { - IsFolderSelected = true; // Default to folder selection InitializeComponent(); - DataContext = this; } }