From 0074ea3c60ee15ebbc534c3ce5aa46671d700594 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 26 Aug 2024 18:03:17 +0800 Subject: [PATCH] enhance: after commit mark branch dirty instead of only workcopy changes dirty (#411) --- src/ViewModels/WorkingCopy.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ViewModels/WorkingCopy.cs b/src/ViewModels/WorkingCopy.cs index 90e6b6c9..6e9a7440 100644 --- a/src/ViewModels/WorkingCopy.cs +++ b/src/ViewModels/WorkingCopy.cs @@ -1320,7 +1320,7 @@ namespace SourceGit.ViewModels PopupHost.ShowAndStartPopup(new Push(_repo, null)); } - _repo.MarkWorkingCopyDirtyManually(); + _repo.MarkBranchesDirtyManually(); _repo.SetWatcherEnabled(true); IsCommitting = false; });