1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

Merge branch 'master' of github.com:nowrep/QupZilla

This commit is contained in:
Mladen Pejaković 2012-03-10 11:26:07 +01:00
commit 3139d2a00d

View File

@ -61,7 +61,6 @@ int main(int argc, char* argv[])
}
MainApplication app(cmdActions, argc, argv);
app.setStyle(new ProxyStyle());
if (app.isExited()) {
// Not showing any output, otherwise XFCE shows "Failed to execute default browser. I/O error" error
@ -71,6 +70,8 @@ int main(int argc, char* argv[])
return 0;
}
app.setStyle(new ProxyStyle());
int result = app.exec();
return result;
}