Fixed single app on Windows

This commit is contained in:
Sylvain Berfini 2017-06-13 15:10:54 +02:00
parent 5e654399a6
commit 5a3d82e432

View file

@ -73,7 +73,7 @@ int main (int argc, char *argv[]) {
if (app.isSecondary()) {
QString command = app.getCommandArgument();
app.sendMessage(command.isEmpty() ? "show" : command.toLocal8Bit(), 0);
app.sendMessage(command.isEmpty() ? "show" : command.toLocal8Bit(), -1);
return 0;
}