Compare commits

...

1 Commits

Author SHA1 Message Date
Ty Lamontagne
5441c7ed59 Debugger: Use native separators when using external symbol files 2024-11-06 17:06:37 -05:00

View File

@@ -344,7 +344,7 @@ void DebugAnalysisSettingsWidget::setupSymbolFileList()
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())
return;