Unverified Commit 47390a71 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #8388 from dakejahl/pr-fix_checklist_actions_toolbar_handling

Clicking on checklist no longer closes action dialog
parents 7f81508f 1a110b2d
......@@ -601,12 +601,6 @@ Item {
]
model: [
/*{
name: "Plan",
iconSource: "/qmlimages/Plan.svg",
buttonVisible: true,
buttonEnabled: true,
},*/
{
name: "Checklist",
iconSource: "/qmlimages/check.svg",
......@@ -651,13 +645,10 @@ Item {
]
onClicked: {
guidedActionsController.closeAll()
/*if(index === 0) {
mainWindow.showPlanView()
} else*/
if(index === 0) {
checklistDropPanel.open()
} else {
guidedActionsController.closeAll()
var action = model[index].action
if (action === -1) {
guidedActionList.model = _actionModel
......
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