[Qt] Fix launch path conversion to utf8

This commit is contained in:
Jonathan Goyvaerts 2020-08-23 16:12:52 +02:00 committed by Satori
parent fb3a52983a
commit 75064807ae
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ void HomeTab::PlayTriggered() {
wnd->show();*/
win->setCentralWidget(wnd);
wnd->Launch(path.toStdString());
wnd->Launch(path.toUtf8().constData());
}
}