Commit 5add3f0d authored by DonLakeFlyer's avatar DonLakeFlyer

No click/indicator for hidden pages

parent 8a23979e
......@@ -127,12 +127,16 @@ Rectangle {
height: width
radius: width / 2
color: modelData.setupComplete ? "#00d932" : "red"
visible: modelData.requiresSetup
visible: modelData.requiresSetup && modelData.setupSource != ""
}
onClicked : {
console.log(modelData.setupSource)
if (modelData.setupSource != "") {
setupView.showVehicleComponentPanel(modelData)
}
}
}
// Summary Qml
Rectangle {
anchors.top: titleBar.bottom
......
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