Skip to content

Commit

Permalink
Deactivate applyDataCorrection button in sideBar of Corrections tab
Browse files Browse the repository at this point in the history
  • Loading branch information
koshchii committed Mar 26, 2024
1 parent 876ebd3 commit d056a82
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,17 @@ Grid {
}
// EasyApp RadioButton not working
RadioButton {
id: applyDataCorrection
topPadding: 0
text: qsTr("Apply data correction")
ToolTip.text: qsTr("Checking this box will apply data correction to the measurement data")

enabled: false
contentItem: Text {
text: applyDataCorrection.text
color: "grey"
leftPadding: applyDataCorrection.indicator.width + applyDataCorrection.spacing
verticalAlignment: Text.AlignVCenter
}
onCheckedChanged: Globals.Proxies.main.corrections.applyDataCorrection = checked
}

Expand Down

0 comments on commit d056a82

Please sign in to comment.