Skip to content

Commit

Permalink
reference to rowCount should be done via dataSetInfo.rowCount (#291)
Browse files Browse the repository at this point in the history
  • Loading branch information
boutinb authored Nov 24, 2023
1 parent 7126fe7 commit 2aedc25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions inst/qml/processCapabilityStudies.qml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Form
id: manualSubgroupSizeValue
negativeValues: false
min: 1
max: dataSetModel.rowCount()
max: dataSetInfo.rowCount
defaultValue: 5
visible: dataFormat.currentValue == "longFormat"
}
Expand Down Expand Up @@ -296,7 +296,7 @@ Form
label: qsTr("Moving range length")
defaultValue: 2
min: 2
max: dataSetModel.rowCount()
max: dataSetInfo.rowCount
}
}

Expand All @@ -315,7 +315,7 @@ Form
label: qsTr("Moving range length")
defaultValue: 2
min: 2
max: dataSetModel.rowCount()
max: dataSetInfo.rowCount
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion inst/qml/variablesChartsIndividuals.qml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Form
label: qsTr("Moving range length")
defaultValue: 2
min: 2
max: dataSetModel.rowCount()
max: dataSetInfo.rowCount
}
}

Expand Down

0 comments on commit 2aedc25

Please sign in to comment.