diff options
author | Bjoern Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-03-26 15:48:48 (GMT) |
---|---|---|
committer | Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com> | 2009-04-06 11:49:48 (GMT) |
commit | 5564ef89f46fe96aa0b22b888a9a8ba053eea6c7 (patch) | |
tree | 96289d5f800bfa52af53498e1c6003838048f8c4 /src/gui/graphicsview | |
parent | a914eb155e085ba0efa5b95154bf7345d4be7cd7 (diff) | |
download | Qt-5564ef89f46fe96aa0b22b888a9a8ba053eea6c7.zip Qt-5564ef89f46fe96aa0b22b888a9a8ba053eea6c7.tar.gz Qt-5564ef89f46fe96aa0b22b888a9a8ba053eea6c7.tar.bz2 |
Fixes: Don't check the force boolean.
Details: It's clipped away regardless.
Diffstat (limited to 'src/gui/graphicsview')
-rw-r--r-- | src/gui/graphicsview/qgraphicsitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem.cpp b/src/gui/graphicsview/qgraphicsitem.cpp index 396fdbd..c691206 100644 --- a/src/gui/graphicsview/qgraphicsitem.cpp +++ b/src/gui/graphicsview/qgraphicsitem.cpp @@ -3635,7 +3635,7 @@ void QGraphicsItemPrivate::updateHelper(const QRectF &rect, bool force, bool may return; if (!scene || (scene && scene->d_func()->updateAll && scene->d_func()->hasSceneRect)) return; - if (!force && !maybeDirtyClipPath && discardUpdateRequest()) + if (!maybeDirtyClipPath && discardUpdateRequest()) return; if (scene && (visible || force)) { if (rect.isNull()) |