aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/dialogs/DefaultFileDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/dialogs/DefaultFileDialog.qml')
-rw-r--r--src/imports/dialogs/DefaultFileDialog.qml5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/imports/dialogs/DefaultFileDialog.qml b/src/imports/dialogs/DefaultFileDialog.qml
index 2cdb34cc03..fb6996b80c 100644
--- a/src/imports/dialogs/DefaultFileDialog.qml
+++ b/src/imports/dialogs/DefaultFileDialog.qml
@@ -107,11 +107,10 @@ AbstractFileDialog {
selectedIndices.map(function(idx) {
if (view.model.isFolder(idx)) {
if (selectFolder)
- // TODO after QTBUG-32039: should not need to convert pathToUrl here
- addSelection(pathToUrl(view.model.get(idx, "filePath")))
+ addSelection(view.model.get(idx, "fileURL"))
} else {
if (!selectFolder)
- addSelection(pathToUrl(view.model.get(idx, "filePath")))
+ addSelection(view.model.get(idx, "fileURL"))
}
})
}