Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
0x90d committed Sep 3, 2020
1 parent ae0c49a commit ed3ec21
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion DuplicateFinderEngine/ScanEngine.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using DuplicateFinderEngine.Data;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
Expand Down
7 changes: 0 additions & 7 deletions VideoDuplicateFinderLinux/MainWindowVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,13 +267,6 @@ private static Func<DuplicateItemViewModel, bool> BuildFilter(string searchText)
IsBusyText = Properties.Resources.CleaningDatabase;
Scanner.CleanupDatabase();
});
public ReactiveCommand OpenItemInFolderCommand => ReactiveCommand.Create<DuplicateItemViewModel>(currentItem => {
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo {
FileName = currentItem.Folder,
UseShellExecute = true,
Verb = "open"
});
});
public ReactiveCommand<ListBox, Action> RemoveIncludesFromListCommand => ReactiveCommand.Create<ListBox, Action>(lbox => {
while (lbox.SelectedItems.Count > 0)
Includes.Remove((string)lbox.SelectedItems[0]);
Expand Down

0 comments on commit ed3ec21

Please sign in to comment.