summaryrefslogtreecommitdiffstats
path: root/examples/graphicsview
diff options
context:
space:
mode:
authorJan-Arve Sæther <jan-arve.saether@nokia.com>2009-09-04 15:19:02 +0200
committerJan-Arve Sæther <jan-arve.saether@nokia.com>2009-09-04 15:20:08 +0200
commit7aacb8b3ff5c4c998298207b355b9c301d736d34 (patch)
treea261fb5257271241331d1e0ff22a877826e8fdb4 /examples/graphicsview
parenta56acff4789521a7b6a6439dcb88e6d9ba4b7ada (diff)
Make the view in the flowlayout example big enough.
Diffstat (limited to 'examples/graphicsview')
-rw-r--r--examples/graphicsview/flowlayout/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/graphicsview/flowlayout/main.cpp b/examples/graphicsview/flowlayout/main.cpp
index 206f60422a..e672ae6fe3 100644
--- a/examples/graphicsview/flowlayout/main.cpp
+++ b/examples/graphicsview/flowlayout/main.cpp
@@ -50,6 +50,7 @@ int main(int argc, char **argv)
QGraphicsView *view = new QGraphicsView(&scene);
Window *w = new Window;
scene.addItem(w);
+ view->resize(400, 300);
view->show();
return app.exec();
}