Skip to content

Commit

Permalink
fix some cov input stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
juliuspfadt committed Oct 17, 2024
1 parent 7c9a3ba commit 46c366b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inst/qml/ExploratoryFactorAnalysis.qml
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ Form
id: addScores
name: "addScores"
label: qsTr("Add FA scores to data")
enabled: variables.count > 1
enabled: variables.count > 1 & dataType.value == "raw"

TextField {
name: "addedScoresPrefix"
Expand Down
3 changes: 2 additions & 1 deletion inst/qml/PrincipalComponentAnalysis.qml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Form
RadioButtonGroup
{
name: "dataType"
id: dataType
columns: 2
RadioButton { value: "raw"; label: qsTr("Raw"); checked: true }
RadioButton
Expand Down Expand Up @@ -252,7 +253,7 @@ Form
id: addScores
name: "addScores"
label: qsTr("Add PC scores to data")
enabled: variables.count > 1
enabled: variables.count > 1 & dataType.value == "raw"

TextField {
name: "addedScoresPrefix"
Expand Down

0 comments on commit 46c366b

Please sign in to comment.