mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change default value to file
This commit is contained in:
parent
52da1c97d9
commit
42dc582ec1
1 changed files with 2 additions and 4 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue