mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-17 00:43:23 +02:00
Merge pull request #11787 from elisa-lj11/musvis
Second fix to null file path return (specific to music visualizer)
This commit is contained in:
commit
9df11fb11a
1 changed files with 1 additions and 1 deletions
|
@ -720,7 +720,7 @@ QString OffscreenUi::fileDialog(const QVariantMap& properties) {
|
|||
return QString();
|
||||
}
|
||||
qCDebug(uiLogging) << result.toString();
|
||||
return result.toUrl().toLocalFile();
|
||||
return result.toString();
|
||||
}
|
||||
|
||||
ModalDialogListener* OffscreenUi::fileDialogAsync(const QVariantMap& properties) {
|
||||
|
|
Loading…
Reference in a new issue