mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:49:59 +00:00
Merge pull request #3760 from Morph1984/trailing-filedir-separator
frontend/filesystem: Add a trailing separator to the string path
This commit is contained in:
commit
8f548266cd
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ void ConfigureFilesystem::SetDirectory(DirectoryTarget target, QLineEdit* edit)
|
|||
str = QFileDialog::getOpenFileName(this, caption, QFileInfo(edit->text()).dir().path(),
|
||||
QStringLiteral("NX Gamecard;*.xci"));
|
||||
} else {
|
||||
str = QFileDialog::getExistingDirectory(this, caption, edit->text());
|
||||
str = QFileDialog::getExistingDirectory(this, caption, edit->text()) + QDir::separator();
|
||||
}
|
||||
|
||||
if (str.isEmpty())
|
||||
|
|
Loading…
Reference in a new issue