diff --git a/src/UI/Dashboard.xaml.cs b/src/UI/Dashboard.xaml.cs index c536c5d4..7c3b79cd 100644 --- a/src/UI/Dashboard.xaml.cs +++ b/src/UI/Dashboard.xaml.cs @@ -1014,7 +1014,7 @@ namespace SourceGit.UI { sub.Path = Path.Combine(repo.Path, path); sub.Name = Path.GetFileName(path); sub.Parent = repo; - sub.Open(); + App.Open(sub); ev.Handled = true; }; @@ -1043,7 +1043,8 @@ namespace SourceGit.UI { sub.Name = Path.GetFileName(path); sub.Parent = repo; - App.Open(sub); + App.Open(sub); + e.Handled = true; } #endregion