[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
eric at webkit.org
eric at webkit.org
Wed Mar 17 18:02:58 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 4670b8ecfea5302956944e044a6e4a62fbddebec
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Fri Feb 26 20:42:02 2010 +0000
2010-02-26 Nicholas Young <nicholas.young at nokia.com>
Reviewed by Tor Arne Vestbø.
[Qt] Incorrect painting after a size changed.
https://bugs.webkit.org/show_bug.cgi?id=35412
No new tests. Bug fix in backend.
* platform/graphics/qt/MediaPlayerPrivateQt.cpp:
(WebCore::MediaPlayerPrivate::paint): Provide the source rectangle, rather than inferring it.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55302 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e2b1ce9..68bfce5 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -2,6 +2,18 @@
Reviewed by Tor Arne Vestbø.
+ [Qt] Incorrect painting after a size changed.
+ https://bugs.webkit.org/show_bug.cgi?id=35412
+
+ No new tests. Bug fix in backend.
+
+ * platform/graphics/qt/MediaPlayerPrivateQt.cpp:
+ (WebCore::MediaPlayerPrivate::paint): Provide the source rectangle, rather than inferring it.
+
+2010-02-26 Nicholas Young <nicholas.young at nokia.com>
+
+ Reviewed by Tor Arne Vestbø.
+
[Qt] Incorrect handling of MIME types in Media Player
https://bugs.webkit.org/show_bug.cgi?id=35413
diff --git a/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp b/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
index e07b393..6677e72 100644
--- a/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
+++ b/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp
@@ -537,7 +537,7 @@ void MediaPlayerPrivate::paint(GraphicsContext* context, const IntRect& rect)
QPainter* painter = context->platformContext();
// Render the video
- m_videoScene->render(painter, QRectF(QRect(rect)));
+ m_videoScene->render(painter, QRectF(QRect(rect)), m_videoItem->sceneBoundingRect());
}
void MediaPlayerPrivate::repaint()
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list