diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-09-02 14:50:58 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-09-02 14:55:51 (GMT) |
commit | 3e741a2e9f8adb26c1b1d7ef5d80c40669ad3350 (patch) | |
tree | 5810fba65d0ae52895ad4647e136507b454a846e /examples/script | |
parent | 8b52b03577321946c8b597f29c294c6aab978c49 (diff) | |
download | Qt-3e741a2e9f8adb26c1b1d7ef5d80c40669ad3350.zip Qt-3e741a2e9f8adb26c1b1d7ef5d80c40669ad3350.tar.gz Qt-3e741a2e9f8adb26c1b1d7ef5d80c40669ad3350.tar.bz2 |
Don't show example fullscreen on desktop
Reviewed-by: Jason Barron
Diffstat (limited to 'examples/script')
-rw-r--r-- | examples/script/context2d/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/script/context2d/main.cpp b/examples/script/context2d/main.cpp index a61452a..c9a8898 100644 --- a/examples/script/context2d/main.cpp +++ b/examples/script/context2d/main.cpp @@ -48,7 +48,6 @@ int main(int argc, char **argv) QApplication app(argc, argv); Window win; - //win.show(); - win.showFullScreen(); + win.show(); return app.exec(); } |