diff options
Diffstat (limited to 'src/plugins/git/gitclient.cpp')
-rw-r--r-- | src/plugins/git/gitclient.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 79c165bb462..9ed9fc8c0e7 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -337,7 +337,7 @@ FileListDiffController::FileListDiffController(IDocument *document, const QStrin Tasking::Storage(diffInputStorage), Group { parallel, - continueOnDone, + continueOnSuccess, ProcessTask(onStagedSetup, onStagedDone, CallDoneIf::Success), ProcessTask(onUnstagedSetup, onUnstagedDone, CallDoneIf::Success), onGroupDone(onDone, CallDoneIf::Success) @@ -500,7 +500,7 @@ ShowController::ShowController(IDocument *document, const QString &id) QList<GroupItem> tasks { parallel, - continueOnDone, + continueOnSuccess, onGroupDone(onFollowsError, CallDoneIf::Error) }; for (int i = 0, total = parents.size(); i < total; ++i) { @@ -532,11 +532,11 @@ ShowController::ShowController(IDocument *document, const QString &id) parallel, onGroupSetup([this] { setStartupFile(VcsBase::source(this->document()).toString()); }), Group { - finishAllAndDone, + finishAllAndSuccess, ProcessTask(onDescriptionSetup, onDescriptionDone, CallDoneIf::Success), Group { parallel, - finishAllAndDone, + finishAllAndSuccess, onGroupSetup(desciptionDetailsSetup), ProcessTask(onBranchesSetup, onBranchesDone, CallDoneIf::Success), ProcessTask(onPrecedesSetup, onPrecedesDone, CallDoneIf::Success), |