Skip to content

Commit f7d7d6f

Browse files
committed
Change Checkbox colour from orange -> grey
1 parent fe2c85f commit f7d7d6f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

resources/BaseComponents/SmallCheckBox.qml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ T.CheckBox {
3131
y: control.topPadding + (control.availableHeight - height) / 2
3232
control: control
3333

34+
border.color: !control.enabled ? control.Material.hintTextColor : control.Material.secondaryTextColor
35+
3436
Ripple {
3537
x: (parent.width - width) / 2
3638
y: (parent.height - height) / 2
@@ -40,9 +42,8 @@ T.CheckBox {
4042
anchor: control
4143
pressed: control.pressed
4244
active: control.down || control.visualFocus || control.hovered
43-
color: control.checked ? control.Material.highlightedRippleColor : control.Material.rippleColor
45+
color: control.Material.rippleColor
4446
}
45-
4647
}
4748

4849
contentItem: Text {

0 commit comments

Comments
 (0)