Skip to content

Commit

Permalink
fix a few qml mistakes (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
RensDofferhoff authored Nov 26, 2024
1 parent 05b3573 commit 2d78470
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inst/qml/BayesianNetworkAnalysis.qml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Form
CheckBox { name: "edgeAbsence"; label: qsTr("Absence of evidence"); checked: true }
}
CheckBox {
name: "centralityPlot"; label: qsTr("Centrality plot")
name: "centralityPlot"; id: centralityPlot; label: qsTr("Centrality plot")
CheckBox {
name: "credibilityInterval";
label: qsTr("Credibility interval 95%");
Expand Down Expand Up @@ -175,7 +175,7 @@ Form
CheckBox { name: "manualColor"; label: qsTr("Manual colors"); id: manualColor }
DropDown
{
enabled: !manualColors.checked
enabled: !manualColor.checked
id: paletteSelector
name: "nodePalette"
label: qsTr("Node palette")
Expand Down Expand Up @@ -285,7 +285,7 @@ Form
Group
{
title: qsTr("Measures shown in centrality plot")
enabled: plotCentrality.checked
enabled: centralityPlot.checked
CheckBox { name: "betweenness"; label: qsTr("Betweenness"); checked: true }
CheckBox { name: "closeness"; label: qsTr("Closeness"); checked: true }
CheckBox { name: "strength"; label: qsTr("Strength"); checked: true }
Expand Down

0 comments on commit 2d78470

Please sign in to comment.