diff --git a/src/Views/Widgets/Dashboard.xaml.cs b/src/Views/Widgets/Dashboard.xaml.cs index d24b0bc7..de0226bc 100644 --- a/src/Views/Widgets/Dashboard.xaml.cs +++ b/src/Views/Widgets/Dashboard.xaml.cs @@ -944,7 +944,7 @@ namespace SourceGit.Views.Widgets { if (hitted == null || hitted != submodule) return; var sub = new Models.Repository(); - sub.Path = Path.Combine(repo.Path, submodule); + sub.Path = Path.GetFullPath(Path.Combine(repo.Path, submodule)); sub.GitDir = new Commands.QueryGitDir(sub.Path).Result(); sub.Name = repo.Name + " : " + Path.GetFileName(submodule);