diff --git a/src/UI/TwoCommitsDiff.xaml.cs b/src/UI/TwoCommitsDiff.xaml.cs index 6cca7799..6090fbd2 100644 --- a/src/UI/TwoCommitsDiff.xaml.cs +++ b/src/UI/TwoCommitsDiff.xaml.cs @@ -219,17 +219,6 @@ namespace SourceGit.UI { e.Handled = true; } - private void ChangeListMouseDoubleClick(object sender, MouseButtonEventArgs e) { - var row = sender as DataGridRow; - if (row == null) return; - - var change = row.DataContext as Git.Change; - if (change == null) return; - - var viewer = new FileHistories(repo, change.Path); - viewer.Show(); - } - private void SortTreeNodes(List list) { list.Sort((l, r) => { if (l.IsFile) {