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:
Orgad Shaneh
2020-04-10 01:13:40 +03:00
committed by Orgad Shaneh
parent 68c539bb9d
commit c86c4d54e2

View File

@@ -461,7 +461,7 @@ public:
{
setReloader([this, branch] {
QStringList args = {"diff"};
args << addHeadWhenCommandInProgress() << branch;
args << branch << addHeadWhenCommandInProgress();
runCommand({addConfigurationArguments(args)});
});
}