summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qwidget.cpp
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@nokia.com>2011-03-21 08:46:34 (GMT)
committerSamuel Rødal <samuel.rodal@nokia.com>2011-03-21 08:46:34 (GMT)
commita3c66f6898c560820ff5768159e4af1323219161 (patch)
tree143fa35cd328a2d9fb4690d703050d01eb407bbb /src/gui/kernel/qwidget.cpp
parent51c2b10379b0bbed5804f0f8e2eca82e5bb4d0bf (diff)
parent86ceda033eda6bd615134f71b9850081a0c808c9 (diff)
downloadQt-a3c66f6898c560820ff5768159e4af1323219161.zip
Qt-a3c66f6898c560820ff5768159e4af1323219161.tar.gz
Qt-a3c66f6898c560820ff5768159e4af1323219161.tar.bz2
Merge remote branch 'qt/master' into staging-master
Conflicts: src/gui/image/qpnghandler.cpp src/opengl/qwindowsurface_gl.cpp
Diffstat (limited to 'src/gui/kernel/qwidget.cpp')
-rw-r--r--src/gui/kernel/qwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/kernel/qwidget.cpp b/src/gui/kernel/qwidget.cpp
index 4e18940..23d063d 100644
--- a/src/gui/kernel/qwidget.cpp
+++ b/src/gui/kernel/qwidget.cpp
@@ -1343,8 +1343,8 @@ void QWidgetPrivate::init(QWidget *parentWidget, Qt::WindowFlags f)
//give potential windows a bigger "pre-initial" size; create_sys() will give them a new size later
#ifdef Q_OS_SYMBIAN
if (isGLWidget) {
- // Don't waste GPU mem for unnecessary large egl surface
- data.crect = QRect(0,0,2,2);
+ // Don't waste GPU mem for unnecessary large egl surface until resized by application
+ data.crect = QRect(0,0,1,1);
} else {
data.crect = parentWidget ? QRect(0,0,100,30) : QRect(0,0,360,640);
}