Browse Source

Fix incorrect call

QGC4.4
DoinLakeFlyer 5 years ago
parent
commit
7a992dd229
  1. 4
      src/QmlControls/QGCFileDialog.qml

4
src/QmlControls/QGCFileDialog.qml

@ -38,7 +38,9 @@ Item { @@ -38,7 +38,9 @@ Item {
onFolderChanged: _updateMobileShortPath()
function _updateMobileShortPath() {
_mobileShortPath = controller.fullFolderPathToShortMobilePath(folder);
if (ScreenTools.isMobile) {
_mobileShortPath = controller.fullFolderPathToShortMobilePath(folder);
}
}
function setupFileExtensions() {

Loading…
Cancel
Save