From 5a3d82e432dc049e22ba123e866d4dbc3d7ddc7e Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 13 Jun 2017 15:10:54 +0200 Subject: [PATCH] Fixed single app on Windows --- linphone-desktop/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-desktop/src/main.cpp b/linphone-desktop/src/main.cpp index bfc4f898d..4d3868d7f 100644 --- a/linphone-desktop/src/main.cpp +++ b/linphone-desktop/src/main.cpp @@ -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; }