Commit 968519cd authored by DonLakeFlyer's avatar DonLakeFlyer

* Fix toggle button check state when new DropPanel is shown

parent 549d095c
......@@ -79,8 +79,8 @@ Rectangle {
dropButtonsExclusiveGroup.current = null
// Signal all toggles as off
for (var i=0; i<model.length; i++) {
if (model[i].toggleButton === true) {
clicked(index, false)
if (model[i].toggle === true) {
_root.clicked(i, false)
}
}
}
......@@ -198,6 +198,7 @@ Rectangle {
dropPanel.hide() // hide affects checked, so this needs to be duplicated inside not outside if
} else {
dropPanel.hide() // hide affects checked, so this needs to be duplicated inside not outside if
uncheckAll()
checked = true
var panelEdgeTopPoint = mapToItem(_root, width, 0)
dropPanel.show(panelEdgeTopPoint, height, modelData.dropPanelComponent)
......
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