We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52da1c9 commit 42dc582Copy full SHA for 42dc582
Plugins/Flow.Launcher.Plugin.Explorer/Views/QuickAccessLinkSettings.xaml.cs
@@ -163,13 +163,11 @@ protected virtual void OnPropertyChanged([CallerMemberName] string propertyName
163
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
164
}
165
166
- public bool IsFileSelected { get; set; }
167
- public bool IsFolderSelected { get; set; }
+ public bool IsFileSelected { get; set; } = true; // Default to File
+ public bool IsFolderSelected { get; set; }
168
169
public QuickAccessLinkSettings()
170
{
171
- IsFolderSelected = true; // Default to folder selection
172
InitializeComponent();
173
- DataContext = this;
174
175
0 commit comments