This commit is contained in:
Martin Rotter 2015-05-12 07:19:40 +02:00
parent c9bb51b262
commit 43ce147750
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ Added:
Fixed:
<ul>
<li>Fixed restarting issues. (issue #109)</li>
<li>Target directory settings is now used for all kinds of downloading + when prompt for each download destination is set, then previously used folder is saved. (issue #108)</li>
<li>Fixed solarized skin. (issue #111)</li>
<li>Keyboard shorcuts and toolbar editors now have alphabetically sorted actions. Toolbar editor switched from drag/drop to buttons. You can use CTRL+UP/DOWN arrow to move buttons in toolbar editor or double-click them to add/remove them. (issue

View File

@ -221,7 +221,7 @@ void Application::onAboutToQuit() {
finish();
qDebug("Killing local peer connection to allow another instance to start.");
if (QProcess::startDetached(applicationFilePath())) {
if (QProcess::startDetached(QString("\"") + QDir::toNativeSeparators(applicationFilePath()) + QString("\""))) {
qDebug("New application instance was started.");
}
else {