diff --git a/FModel/ViewModels/SearchViewModel.cs b/FModel/ViewModels/SearchViewModel.cs index 35cb9bc3..af4beb41 100644 --- a/FModel/ViewModels/SearchViewModel.cs +++ b/FModel/ViewModels/SearchViewModel.cs @@ -92,7 +92,7 @@ public class SearchViewModel : ViewModel public void RefreshFilter() { - if (SearchResultsView.Filter == null) + if (!string.IsNullOrEmpty(FilterText)) SearchResultsView.Filter = e => ItemFilter(e, FilterText.Trim().Split(' ')); else SearchResultsView.Refresh(); diff --git a/FModel/Views/SettingsView.xaml b/FModel/Views/SettingsView.xaml index 4363181e..ae21ec2c 100644 --- a/FModel/Views/SettingsView.xaml +++ b/FModel/Views/SettingsView.xaml @@ -45,6 +45,7 @@ + @@ -233,8 +234,8 @@ - - +