summaryrefslogtreecommitdiffstats
path: root/qt-homescreen-example
diff options
context:
space:
mode:
authorHarald Fernengel <harald.fernengel@nokia.com>2010-02-24 14:14:50 +0100
committerHarald Fernengel <harald.fernengel@nokia.com>2010-02-24 14:14:50 +0100
commit6a7471c633a77c3c5091e58b26bc93701961f89b (patch)
tree2ee26a878f16b70aaa0f8f4bdc2e22fab7740f42 /qt-homescreen-example
parenta3a2e7e57e29c35127be7776548a8a0f07a0efee (diff)
enforce native graphics system to work around a bug in the composition manager
Diffstat (limited to 'qt-homescreen-example')
-rw-r--r--qt-homescreen-example/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-homescreen-example/main.cpp b/qt-homescreen-example/main.cpp
index 56d10b3..9f6b332 100644
--- a/qt-homescreen-example/main.cpp
+++ b/qt-homescreen-example/main.cpp
@@ -46,6 +46,10 @@
int main(int argc, char *argv[])
{
+ // enforce native graphics system for now due to a bug in Maemo's composition
+ // manager
+ QApplication::setGraphicsSystem("native");
+
QApplication app(argc, argv);
TestWidget w;