Skip to content

Commit

Permalink
Adding condition for save graph to be implemented in Test Ok
Browse files Browse the repository at this point in the history
  • Loading branch information
derekagorhom committed Feb 8, 2023
1 parent 9e55d2a commit 890f738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instat/dlgRatingScales.vb
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Public Class dlgRatingScales
End Sub

Private Sub TestOkEnabled()
If Not ucrReceiverOrderedFactors.IsEmpty AndAlso ucrNudNeutralLevel.GetText <> "" AndAlso (Not ucrChkWeights.Checked OrElse (ucrChkWeights.Checked AndAlso Not ucrReceiverWeights.IsEmpty)) Then
If Not ucrReceiverOrderedFactors.IsEmpty AndAlso ucrSaveGraph.IsComplete AndAlso ucrNudNeutralLevel.GetText <> "" AndAlso (Not ucrChkWeights.Checked OrElse (ucrChkWeights.Checked AndAlso Not ucrReceiverWeights.IsEmpty)) Then
ucrBase.OKEnabled(True)
Else
ucrBase.OKEnabled(False)
Expand Down

0 comments on commit 890f738

Please sign in to comment.