mirror of
https://github.com/libretro/RetroArch
synced 2025-03-29 22:20:21 +00:00
Qt: use native path separators for folder scan from file browser, fixes #7084
This commit is contained in:
parent
821ffc9962
commit
f6dc3345e9
@ -840,7 +840,7 @@ void MainWindow::onFileBrowserTreeContextMenuRequested(const QPoint&)
|
||||
QList<QAction*> actions;
|
||||
QScopedPointer<QAction> scanAction;
|
||||
QDir dir;
|
||||
QString currentDirString = m_dirModel->filePath(m_dirTree->currentIndex());
|
||||
QString currentDirString = QDir::toNativeSeparators(m_dirModel->filePath(m_dirTree->currentIndex()));
|
||||
settings_t *settings = config_get_ptr();
|
||||
QByteArray dirArray;
|
||||
const char *fullpath = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user