Commit b4ddf359 authored by Valentin Platzgummer's avatar Valentin Platzgummer

rc1

parent e789e194
......@@ -606,8 +606,8 @@ QGCView {
anchors.bottom: parent.bottom
anchors.leftMargin: ScreenTools.defaultFontPixelWidth
anchors.bottomMargin: ScreenTools.defaultFontPixelWidth
maxWidth: 300
maxHeight: parent.height - toolStrip.height - ScreenTools.defaultFontPixelWidth*4
maxWidth: Math.min(300, singleMultiSelector.x - ScreenTools.defaultFontPixelHeight*4 )
maxHeight: parent.height - toolStrip.height - toolStrip.y - ScreenTools.defaultFontPixelHeight*4
wimaController: wimaController
......
......@@ -68,12 +68,6 @@ Item {
property real _margins: _root._margins
Component.onCompleted: {
console.log('mainFrame onCompleted')
console.log('_margins')
console.log(_margins)
}
// checkbox to enable/ disable wima
SliderSwitch {
id: enableWima
......
......@@ -36,10 +36,10 @@ WimaPlaner::WimaPlaner(QObject *parent)
_updateTimer.setInterval(500); // 250 ms means: max update time 2*250 ms
_updateTimer.start();
// for debugging and testing purpose
// for debugging and testing purpose, remove if not needed anymore
connect(&_autoLoadTimer, &QTimer::timeout, this, &WimaPlaner::autoLoadMission);
_autoLoadTimer.setSingleShot(true);
_autoLoadTimer.start(300);
//_autoLoadTimer.start(300);
_calcArrivalAndReturnPathTimer.setInterval(100);
_calcArrivalAndReturnPathTimer.setSingleShot(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment