aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-07-21 13:17:33 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-07-21 18:01:19 +0000
commit9ea40a33e91a5457f3f57edaf7485c67edfe6e28 (patch)
tree256f879317c1e6333217186d21629255d457d907
parent20942576ff6a6faadf45d5045d80f4d21697c212 (diff)
Material: cleanup the ripple color binding
The binding was copied from Button, and 'control.checked' condition was accidentally left there. Such property doesn't exist in ComboBox. Change-Id: I11b56e2da997ab2519a63527f58faff3d1bb4d8b Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--src/imports/controls/material/ComboBox.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/imports/controls/material/ComboBox.qml b/src/imports/controls/material/ComboBox.qml
index 54d89fd2..9efc4bc9 100644
--- a/src/imports/controls/material/ComboBox.qml
+++ b/src/imports/controls/material/ComboBox.qml
@@ -108,7 +108,7 @@ T.ComboBox {
pressed: control.pressed
anchor: control
active: control.pressed || control.visualFocus || control.hovered
- color: control.checked ? control.Material.highlightedRippleColor : control.Material.rippleColor
+ color: control.Material.rippleColor
}
}