From 8d4fbe50ce84862d0d3b339a3bb023d6267b6c65 Mon Sep 17 00:00:00 2001 From: Adyasha Dash Date: Tue, 4 Oct 2016 18:01:50 +0200 Subject: [PATCH] fix saving and loading mission file on tablet --- src/MissionEditor/MissionEditor.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MissionEditor/MissionEditor.qml b/src/MissionEditor/MissionEditor.qml index 30f136d41..e9ca6b2cd 100644 --- a/src/MissionEditor/MissionEditor.qml +++ b/src/MissionEditor/MissionEditor.qml @@ -246,7 +246,7 @@ QGCView { QGCMobileFileDialog { openDialog: true fileExtension: _syncDropDownController.fileExtension - onFilenameReturned: _syncDropDownController.loadFromfile(filename) + onFilenameReturned: _syncDropDownController.loadFromFile(filename) } } @@ -256,7 +256,7 @@ QGCView { QGCMobileFileDialog { openDialog: false fileExtension: _syncDropDownController.fileExtension - onFilenameReturned: _syncDropDownController.saveToFile() + onFilenameReturned: _syncDropDownController.saveToFile(filename) } } -- 2.22.0