Debugger: Use native separators when using external symbol files
Some checks failed
🐧 Linux Builds / AppImage (push) Has been cancelled
🐧 Linux Builds / Flatpak (push) Has been cancelled
🍎 MacOS Builds / Defaults (push) Has been cancelled
🖥️ Windows Builds / Lint VS Project Files (push) Has been cancelled
🖥️ Windows Builds / CMake (push) Has been cancelled
🖥️ Windows Builds / SSE4 (push) Has been cancelled
🖥️ Windows Builds / AVX2 (push) Has been cancelled
🏭 Update Controller Database / update-controller-db (push) Has been cancelled

This commit is contained in:
Ty Lamontagne 2024-11-06 17:06:37 -05:00
parent bea471a0e3
commit 5441c7ed59
No known key found for this signature in database
GPG Key ID: 1B9139843421A974

View File

@ -344,7 +344,7 @@ void DebugAnalysisSettingsWidget::setupSymbolFileList()
void DebugAnalysisSettingsWidget::addSymbolFile() void DebugAnalysisSettingsWidget::addSymbolFile()
{ {
QString path = QFileDialog::getOpenFileName(this, tr("Add Symbol File")); QString path = QDir::toNativeSeparators(QFileDialog::getOpenFileName(this, tr("Add Symbol File")));
if (path.isEmpty()) if (path.isEmpty())
return; return;