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 cce95cb commit 914530aCopy full SHA for 914530a
ViewModels/MainWindowViewModel.cs
@@ -37,6 +37,13 @@ public MainWindowViewModel(ILogger logger)
37
);
38
39
FileMakerClips = [];
40
+ FileMakerClips.CollectionChanged += (sender, e) =>
41
+ {
42
+ // reset search text, which will trigger a property notify changed
43
+ // that will re-run the search with empty value (which shows all)
44
+ SearchText = string.Empty;
45
+ };
46
+
47
FilteredClips = [];
48
49
LoadClips(CurrentPath);
0 commit comments