Merge pull request #3760 from Morph1984/trailing-filedir-separator
frontend/filesystem: Add a trailing separator to the string path
This commit is contained in:
		@@ -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())
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user