From 745d779625735185b4efc422bcd1095880b5dfe8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:08:13 +0000 Subject: [PATCH 1/5] Initial plan From 795f68df96e5403d58ceb6a35242ca646a651498 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:10:58 +0000 Subject: [PATCH 2/5] Fix GuidedValueSlider positioning to anchor below toolbar Co-authored-by: DonLakeFlyer <5876851+DonLakeFlyer@users.noreply.github.com> --- src/FlyView/FlyView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FlyView/FlyView.qml b/src/FlyView/FlyView.qml index 371dbe2a1c73..3e8f4300f87b 100644 --- a/src/FlyView/FlyView.qml +++ b/src/FlyView/FlyView.qml @@ -165,7 +165,7 @@ Item { GuidedValueSlider { id: guidedValueSlider anchors.right: parent.right - anchors.top: parent.top + anchors.top: toolbar.bottom anchors.bottom: parent.bottom z: QGroundControl.zOrderTopMost visible: false From 9426b6a7552b27280db45b82fafa0331423fb6a9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:12:03 +0000 Subject: [PATCH 3/5] Fix GuidedValueSlider to use topMargin for toolbar spacing Co-authored-by: DonLakeFlyer <5876851+DonLakeFlyer@users.noreply.github.com> --- src/FlyView/FlyView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/FlyView/FlyView.qml b/src/FlyView/FlyView.qml index 3e8f4300f87b..b15967d28f82 100644 --- a/src/FlyView/FlyView.qml +++ b/src/FlyView/FlyView.qml @@ -165,8 +165,9 @@ Item { GuidedValueSlider { id: guidedValueSlider anchors.right: parent.right - anchors.top: toolbar.bottom + anchors.top: parent.top anchors.bottom: parent.bottom + anchors.topMargin: toolbar.height z: QGroundControl.zOrderTopMost visible: false } From 236276f334a5dde8880094c7abe3f033eec73a28 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:13:23 +0000 Subject: [PATCH 4/5] Add widget margin to GuidedValueSlider for consistency Co-authored-by: DonLakeFlyer <5876851+DonLakeFlyer@users.noreply.github.com> --- src/FlyView/FlyView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FlyView/FlyView.qml b/src/FlyView/FlyView.qml index b15967d28f82..a8cd0319249f 100644 --- a/src/FlyView/FlyView.qml +++ b/src/FlyView/FlyView.qml @@ -167,7 +167,7 @@ Item { anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom - anchors.topMargin: toolbar.height + anchors.topMargin: toolbar.height + _widgetMargin z: QGroundControl.zOrderTopMost visible: false } From 8079aab2356532fd26b0f27b97feb0844c6853d4 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Wed, 10 Dec 2025 11:03:24 -0800 Subject: [PATCH 5/5] Fix --- src/FlyView/FlyView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FlyView/FlyView.qml b/src/FlyView/FlyView.qml index a8cd0319249f..b15967d28f82 100644 --- a/src/FlyView/FlyView.qml +++ b/src/FlyView/FlyView.qml @@ -167,7 +167,7 @@ Item { anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom - anchors.topMargin: toolbar.height + _widgetMargin + anchors.topMargin: toolbar.height z: QGroundControl.zOrderTopMost visible: false }