aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/imports/controls/material/Button.qml1
-rw-r--r--src/imports/controls/material/CheckDelegate.qml1
-rw-r--r--src/imports/controls/material/ComboBox.qml1
-rw-r--r--src/imports/controls/material/ItemDelegate.qml1
-rw-r--r--src/imports/controls/material/RadioDelegate.qml1
-rw-r--r--src/imports/controls/material/SwipeDelegate.qml1
-rw-r--r--src/imports/controls/material/SwitchDelegate.qml1
-rw-r--r--src/imports/controls/material/TabButton.qml1
-rw-r--r--src/imports/controls/material/ToolButton.qml1
9 files changed, 0 insertions, 9 deletions
diff --git a/src/imports/controls/material/Button.qml b/src/imports/controls/material/Button.qml
index 9ed5263c..57cd44e6 100644
--- a/src/imports/controls/material/Button.qml
+++ b/src/imports/controls/material/Button.qml
@@ -112,7 +112,6 @@ T.Button {
clipRadius: 2
width: parent.width
height: parent.height
- trigger: control.flat ? Ripple.Press : Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/CheckDelegate.qml b/src/imports/controls/material/CheckDelegate.qml
index 9fff50d2..99b24f09 100644
--- a/src/imports/controls/material/CheckDelegate.qml
+++ b/src/imports/controls/material/CheckDelegate.qml
@@ -85,7 +85,6 @@ T.CheckDelegate {
height: parent.height
clip: visible
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/ComboBox.qml b/src/imports/controls/material/ComboBox.qml
index a48c6884..87ab1b2d 100644
--- a/src/imports/controls/material/ComboBox.qml
+++ b/src/imports/controls/material/ComboBox.qml
@@ -110,7 +110,6 @@ T.ComboBox {
clipRadius: control.flat ? 0 : 2
width: parent.width
height: parent.height
- trigger: Ripple.Press
pressed: control.pressed
anchor: control
active: control.pressed || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/ItemDelegate.qml b/src/imports/controls/material/ItemDelegate.qml
index b9db276d..647c3147 100644
--- a/src/imports/controls/material/ItemDelegate.qml
+++ b/src/imports/controls/material/ItemDelegate.qml
@@ -77,7 +77,6 @@ T.ItemDelegate {
height: parent.height
clip: visible
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/RadioDelegate.qml b/src/imports/controls/material/RadioDelegate.qml
index 1d056aa8..d1fa5e0e 100644
--- a/src/imports/controls/material/RadioDelegate.qml
+++ b/src/imports/controls/material/RadioDelegate.qml
@@ -85,7 +85,6 @@ T.RadioDelegate {
height: parent.height
clip: visible
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/SwipeDelegate.qml b/src/imports/controls/material/SwipeDelegate.qml
index bc9b49c2..329322e2 100644
--- a/src/imports/controls/material/SwipeDelegate.qml
+++ b/src/imports/controls/material/SwipeDelegate.qml
@@ -94,7 +94,6 @@ T.SwipeDelegate {
height: parent.height
clip: visible
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/SwitchDelegate.qml b/src/imports/controls/material/SwitchDelegate.qml
index b88dbe01..2134cfd1 100644
--- a/src/imports/controls/material/SwitchDelegate.qml
+++ b/src/imports/controls/material/SwitchDelegate.qml
@@ -85,7 +85,6 @@ T.SwitchDelegate {
height: parent.height
clip: visible
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/TabButton.qml b/src/imports/controls/material/TabButton.qml
index 9e6e8333..cac0f19a 100644
--- a/src/imports/controls/material/TabButton.qml
+++ b/src/imports/controls/material/TabButton.qml
@@ -65,7 +65,6 @@ T.TabButton {
implicitHeight: 48
clip: true
- trigger: Ripple.Release
pressed: control.pressed
anchor: control
active: control.down || control.visualFocus || control.hovered
diff --git a/src/imports/controls/material/ToolButton.qml b/src/imports/controls/material/ToolButton.qml
index df4b23f8..6105d1e7 100644
--- a/src/imports/controls/material/ToolButton.qml
+++ b/src/imports/controls/material/ToolButton.qml
@@ -73,7 +73,6 @@ T.ToolButton {
clip: !square
width: square ? parent.height / 2 : parent.width
height: square ? parent.height / 2 : parent.height
- trigger: square ? Ripple.Press : Ripple.Release
pressed: control.pressed
anchor: control
active: control.enabled && (control.down || control.visualFocus || control.hovered)