diff --git a/SourceGit/UI/DiffViewer.xaml.cs b/SourceGit/UI/DiffViewer.xaml.cs index 4e6145a4..b54d40b1 100644 --- a/SourceGit/UI/DiffViewer.xaml.cs +++ b/SourceGit/UI/DiffViewer.xaml.cs @@ -39,6 +39,8 @@ namespace SourceGit.UI { /// public void Diff(Git.Repository repo, string options, string path, string orgPath = null) { SetTitle(path, orgPath); + + loading.Visibility = Visibility.Visible; Task.Run(() => { var args = $"{options} -- "; if (!string.IsNullOrEmpty(orgPath)) args += $"{orgPath} ";