diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-10-01 00:17:50 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-10-01 00:17:50 (GMT) |
commit | e48751aecc0cd3750557273cc27117badfcee8c3 (patch) | |
tree | 739fb996e61b13860324f434e2511948670cbd26 | |
parent | 78ff58e9dd073dd4182d6ddcb2667ce6dece018e (diff) | |
download | Qt-e48751aecc0cd3750557273cc27117badfcee8c3.zip Qt-e48751aecc0cd3750557273cc27117badfcee8c3.tar.gz Qt-e48751aecc0cd3750557273cc27117badfcee8c3.tar.bz2 |
Enhance layout example
It's actually useful now. A lot slower too.
-rw-r--r-- | examples/declarative/layouts/layouts.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/declarative/layouts/layouts.qml b/examples/declarative/layouts/layouts.qml index 6e22d8b..b54a7f3 100644 --- a/examples/declarative/layouts/layouts.qml +++ b/examples/declarative/layouts/layouts.qml @@ -5,7 +5,8 @@ Item { id: resizable GraphicsObjectContainer{ anchors.fill:parent QGraphicsWidget{ - geometry:{ "0,0," + parent.width.toString() + "x" + parent.height.toString(); } + size.width:parent.width + size.height:parent.height layout: QGraphicsLinearLayout{ LayoutItem{ minimumSize: "100x100" |