Skip to content

Commit

Permalink
Fix model options layout
Browse files Browse the repository at this point in the history
  • Loading branch information
maltelueken committed Nov 12, 2023
1 parent 066b78f commit 6333e92
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions inst/qml/ClassicProcess.qml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ Form
{
id: opts
title: qsTr("Options for %1").arg(rowValue)
columns: 4
columns: 3

Group
{
Expand All @@ -320,7 +320,7 @@ Form
Group
{
title: qsTr("Parameter Estimates")
columns: 1
// columns: 1
CheckBox
{
name: "pathCoefficients"
Expand All @@ -347,24 +347,6 @@ Form
}
}

Group
{
title: qsTr("Path Plots")
columns: 1
CheckBox
{
name: "conceptualPathPlot"
label: qsTr("Conceptual")
checked: conceptualPathPlotsForAllModels.checked
}
CheckBox
{
name: "statisticalPathPlot"
label: qsTr("Statistical")
checked: statisticalPathPlotsForAllModels.checked
}
}

Group
{
title: qsTr("Tests")
Expand Down Expand Up @@ -415,6 +397,24 @@ Form
}
}
}

Group
{
title: qsTr("Path Plots")
columns: 1
CheckBox
{
name: "conceptualPathPlot"
label: qsTr("Conceptual")
checked: conceptualPathPlotsForAllModels.checked
}
CheckBox
{
name: "statisticalPathPlot"
label: qsTr("Statistical")
checked: statisticalPathPlotsForAllModels.checked
}
}
}
}
}
Expand Down

0 comments on commit 6333e92

Please sign in to comment.