Change default value to file

This commit is contained in:
DB P 2025-06-17 17:07:02 +09:00
parent 52da1c97d9
commit 42dc582ec1

View file

@ -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;
}
}