aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/controls/data/tst_abstractbutton.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/controls/data/tst_abstractbutton.qml b/tests/auto/controls/data/tst_abstractbutton.qml
index 2a6fbecf..6e59d3a6 100644
--- a/tests/auto/controls/data/tst_abstractbutton.qml
+++ b/tests/auto/controls/data/tst_abstractbutton.qml
@@ -600,6 +600,8 @@ TestCase {
Component {
id: actionButton
AbstractButton {
+ width: 100
+ height: 50
action: Action {
text: "Default"
icon.name: checked ? "checked" : "unchecked"
@@ -681,6 +683,8 @@ TestCase {
Component {
id: checkableButton
AbstractButton {
+ width: 100
+ height: 50
checkable: true
action: Action {}
}