Git - capitalize command in progress in topic

This makes command stand out. Before it looked like regular branch.

Change-Id: I9f47e42392bb70cbd9ceec94fd4d55dc15c95b02
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Petar Perisin
2013-04-26 23:08:43 +02:00
parent d425d6485e
commit 571672c414

View File

@@ -1267,13 +1267,13 @@ QString GitClient::synchronousTopic(const QString &workingDirectory)
switch (checkCommandInProgressInGitDir(gitDir)) {
case Rebase:
case RebaseMerge:
return data.topic = tr("Rebasing");
return data.topic = tr("REBASING");
case Revert:
return data.topic = tr("Reverting");
return data.topic = tr("REVERTING");
case CherryPick:
return data.topic = tr("Cherry Picking");
return data.topic = tr("CHERRY-PICKING");
case Merge:
return data.topic = tr("Merging");
return data.topic = tr("MERGING");
default:
break;
}