diff --git a/src/QmlControls/QGCFileDialog.qml b/src/QmlControls/QGCFileDialog.qml index ecd0782ca9a2b8bdf997e3832c328266f2d8d852..d70730a070f33004b027a74f7b62a43c5582a35c 100644 --- a/src/QmlControls/QGCFileDialog.qml +++ b/src/QmlControls/QGCFileDialog.qml @@ -15,7 +15,7 @@ Item { visible: false property var qgcView - property string folder + property string folder // Due to Qt bug with file url parsing this must be an absolute path property var nameFilters property string fileExtension // Primary file extension to search for property string fileExtension2: "" // Secondary file extension to search for @@ -75,7 +75,7 @@ Item { // the FileDialog fallback mechanism on android 5.9 builds. HackFileDialog { id: fullFileDialog - folder: "file://" + _root.folder + folder: "file:///" + _root.folder nameFilters: _root.nameFilters ? _root.nameFilters : [] title: _root.title selectExisting: _root.selectExisting