summaryrefslogtreecommitdiffstats
path: root/src/controls/GroupBox.qml
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2013-02-21 11:41:39 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-23 14:50:12 +0100
commit28b73e87fdaf9738f14c36e62940215658ec01ac (patch)
tree96dddba1254a3fafaa72f7607071c01728902890 /src/controls/GroupBox.qml
parent7c002ef5c9f5acfcb4d2a15ee0993f29310aa8a0 (diff)
GroupBox: small fix + add basic autotests
And add a GroupBox in the testbench application. Change-Id: I5581a96addf6b1c2cdb684e4a0d45ab101e510d9 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com> Reviewed-by: Caroline Chao <caroline.chao@digia.com>
Diffstat (limited to 'src/controls/GroupBox.qml')
-rw-r--r--src/controls/GroupBox.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/GroupBox.qml b/src/controls/GroupBox.qml
index e0346b86d..5fe37c9ea 100644
--- a/src/controls/GroupBox.qml
+++ b/src/controls/GroupBox.qml
@@ -188,6 +188,6 @@ Item {
anchors.rightMargin: 8
anchors.bottomMargin: 8
anchors.fill: parent
- enabled: (!checkable || checkbox.checked)
+ enabled: (!groupbox.checkable || groupbox.checked)
}
}