Skip to content

Commit

Permalink
Hotfix for filter
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoffey1 committed Feb 18, 2019
1 parent b97ddb4 commit 561fead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WordByWord/WordByWord/ViewModel/ViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class ViewModel : ObservableObject
private readonly Stopwatch _stopWatch = new Stopwatch();
private TimeSpan _elapsedTime;
private readonly object _libraryLock = new object();
private ObservableCollection<string> _libraryExtensions = new ObservableCollection<string>() { "none" };
private ObservableCollection<string> _libraryExtensions = new ObservableCollection<string>() { "no filter" };
private ObservableCollection<Document> _library = new ObservableCollection<Document>();// filePaths, ocrtext
private ContextMenu _addDocumentContext;
private string _selectedExtension = "no filter";
Expand Down

0 comments on commit 561fead

Please sign in to comment.