Merge pull request #859 from iNavFlight/dzikuvx-fix-open-dialog

Fix file open dialog in mission planner
pull/862/head
Paweł Spychalski 5 years ago committed by GitHub
commit 7628f3f7d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -354,7 +354,9 @@ TABS.mission_control.initialize = function (callback) {
}
});
//reset text position
textGeom.setCoordinates(map.getCoordinateFromPixel([0,0]));
if (textGeom) {
textGeom.setCoordinates(map.getCoordinateFromPixel([0,0]));
}
}
function paintLine(pos1, pos2) {

Loading…
Cancel
Save