Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a few qml mistakes #106

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -174,7 +174,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 @@ -284,7 +284,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
Loading