aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2017-09-29 11:01:56 +0200
committerMitch Curtis <mitch.curtis@qt.io>2017-09-29 09:58:13 +0000
commit2a60459e1f5b10af8f6901e3a97e7b80c6a8aefd (patch)
tree7c655c4a3a83d532a5ef4984198863fedc3a20c5
parent8796a1e1bb464d813e23d94f602fb22b8238cab8 (diff)
testbench: add SpinBox states and tidy up existing ones
Change-Id: I2d0cb1f5ec9073670fa00a86fa1ac85bd50b8373 Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
-rw-r--r--tests/manual/testbench/controls/SpinBox.qml8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/manual/testbench/controls/SpinBox.qml b/tests/manual/testbench/controls/SpinBox.qml
index 87e5cfae..77094dc0 100644
--- a/tests/manual/testbench/controls/SpinBox.qml
+++ b/tests/manual/testbench/controls/SpinBox.qml
@@ -53,16 +53,18 @@ import QtQuick.Controls 2.3
QtObject {
property var supportedStates: [
- ["disabled"],
+ [],
["pressed"],
+ ["disabled"],
["mirrored"],
- ["mirrored", "disabled"],
["mirrored", "pressed"],
+ ["mirrored", "disabled"],
["editable"],
["editable", "pressed"],
+ ["editable", "disabled"],
["editable", "mirrored"],
["editable", "mirrored", "pressed"],
- ["editable", "mirrored", "mirrored"]
+ ["editable", "mirrored", "disabled"]
]
property Component component: SpinBox {