Skip to content

Commit 6a98af1

Browse files
committed
ux: add missing progress description
1 parent 0e6a088 commit 6a98af1

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/ViewModels/CreateBranch.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ public override Task<bool> Sure()
126126
}
127127
else
128128
{
129+
SetProgressDescription($"Create new branch '{_name}'");
129130
Commands.Branch.Create(_repo.FullPath, _name, _baseOnRevision);
130131
}
131132

src/ViewModels/GitFlowFinish.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ public override Task<bool> Sure()
4242
break;
4343
}
4444

45+
SetProgressDescription($"Git Flow - finishing {_branch.Name} ...");
4546
var succ = new Commands.GitFlow(_repo.FullPath).Finish(_type, branch, KeepBranch);
4647
CallUIThread(() => _repo.SetWatcherEnabled(true));
4748
return succ;

src/ViewModels/GitFlowStart.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ public override Task<bool> Sure()
6565
_repo.SetWatcherEnabled(false);
6666
return Task.Run(() =>
6767
{
68+
SetProgressDescription($"Git Flow - starting {_prefix}{_name} ...");
6869
var succ = new Commands.GitFlow(_repo.FullPath).Start(_type, _name);
6970
CallUIThread(() => _repo.SetWatcherEnabled(true));
7071
return succ;

0 commit comments

Comments
 (0)