Commit 4d5fddbd authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #4243 from DonLakeFlyer/SmallFixes

Small fixes
parents 3c254e35 7cdaddd3
...@@ -1191,7 +1191,6 @@ QGCView { ...@@ -1191,7 +1191,6 @@ QGCView {
Layout.fillWidth: true Layout.fillWidth: true
onClicked: { onClicked: {
syncButton.hideDropDown() syncButton.hideDropDown()
_syncDropDownController.removeAll()
qgcView.showDialog(removeAllPromptDialog, qsTr("Remove all"), qgcView.showDialogDefaultWidth, StandardButton.Yes | StandardButton.No) qgcView.showDialog(removeAllPromptDialog, qsTr("Remove all"), qgcView.showDialogDefaultWidth, StandardButton.Yes | StandardButton.No)
} }
} }
......
...@@ -111,7 +111,7 @@ Item { ...@@ -111,7 +111,7 @@ Item {
dropItemHolderRect.y = 0 dropItemHolderRect.y = 0
if (dropDirection == dropLeft) { if (dropDirection == dropLeft) {
dropDownItem.x = dropDownItem.width + _dropMargin dropDownItem.x = -(dropDownItem.width + _dropMargin)
dropItemHolderRect.x = 0 dropItemHolderRect.x = 0
} else { } else {
......
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