forked from qt-creator/qt-creator
Git: Fix order of arguments on branch diff
When there is a command in progress. Change-Id: I73e8378283fcc34f324f862daaf2529b6a0f1265 Reviewed-by: André Hartmann <aha_1980@gmx.de>
This commit is contained in:
committed by
Orgad Shaneh
parent
68c539bb9d
commit
c86c4d54e2
@@ -461,7 +461,7 @@ public:
|
|||||||
{
|
{
|
||||||
setReloader([this, branch] {
|
setReloader([this, branch] {
|
||||||
QStringList args = {"diff"};
|
QStringList args = {"diff"};
|
||||||
args << addHeadWhenCommandInProgress() << branch;
|
args << branch << addHeadWhenCommandInProgress();
|
||||||
runCommand({addConfigurationArguments(args)});
|
runCommand({addConfigurationArguments(args)});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user