summaryrefslogtreecommitdiffstats
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
parenta3a2e7e57e29c35127be7776548a8a0f07a0efee (diff)
enforce native graphics system to work around a bug in the composition manager
-rw-r--r--debian/changelog6
-rw-r--r--qt-homescreen-example/main.cpp4
2 files changed, 10 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index ce70308..ca08ed0 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+qt4-maemo5-homescreen (4.6.2~git20100224-5maemo1) unstable; urgency=low
+
+ * Force native paint system
+
+ -- Qt Development Frameworks <qt-info@nokia.com> Wed, 24 Feb 2010 14:29:01 +0200
+
qt4-maemo5-homescreen (4.6.2~git20100224-4maemo1) unstable; urgency=low
* Fix dependencies
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;