aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-11-13 14:00:33 +0100
committerMitch Curtis <mitch.curtis@theqtcompany.com>2015-11-16 09:34:12 +0000
commit4afd68f3cf25ef6da164fcc1dd7f5663999f31d0 (patch)
treea3f4d42d05ca2407416de553958ddfb59d2a4427 /tests
parent0a0902b10d3135b0697741cc9b1f5b1b318eeb1f (diff)
Add highlighted buttons to testbench
Change-Id: I0cb200864304f91413f0e47b786d930b2efaac94 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/testbench/main.qml9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/manual/testbench/main.qml b/tests/manual/testbench/main.qml
index b7cfd54e..84e9ef66 100644
--- a/tests/manual/testbench/main.qml
+++ b/tests/manual/testbench/main.qml
@@ -126,6 +126,15 @@ ApplicationWindow {
pressed: true
}
Button {
+ text: "Highlighted"
+ highlighted: true
+ }
+ Button {
+ text: "Pressed + Highlighted"
+ pressed: true
+ highlighted: true
+ }
+ Button {
text: "Disabled"
enabled: false
}