[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc
philn at webkit.org
philn at webkit.org
Wed Dec 22 14:47:17 UTC 2010
The following commit has been merged in the debian/experimental branch:
commit d3499feeff747bf8e30eb68478acb25e938695b1
Author: philn at webkit.org <philn at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Oct 20 07:52:14 2010 +0000
2010-10-20 Philippe Normand <pnormand at igalia.com>
Reviewed by Xan Lopez.
[GTK] use gtk_widget_hide instead of gtk_widget_hide_all in the fullscreen video conroller
https://bugs.webkit.org/show_bug.cgi?id=47972
* WebCoreSupport/FullscreenVideoController.cpp:
(FullscreenVideoController::hideHud):
(FullscreenVideoController::exitFullscreen):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@70133 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/gtk/ChangeLog b/WebKit/gtk/ChangeLog
index d19902c..cde04c9 100644
--- a/WebKit/gtk/ChangeLog
+++ b/WebKit/gtk/ChangeLog
@@ -1,3 +1,14 @@
+2010-10-20 Philippe Normand <pnormand at igalia.com>
+
+ Reviewed by Xan Lopez.
+
+ [GTK] use gtk_widget_hide instead of gtk_widget_hide_all in the fullscreen video conroller
+ https://bugs.webkit.org/show_bug.cgi?id=47972
+
+ * WebCoreSupport/FullscreenVideoController.cpp:
+ (FullscreenVideoController::hideHud):
+ (FullscreenVideoController::exitFullscreen):
+
2010-10-19 Joone Hur <joone at kldp.org>
Reviewed by Martin Robinson.
diff --git a/WebKit/gtk/WebCoreSupport/FullscreenVideoController.cpp b/WebKit/gtk/WebCoreSupport/FullscreenVideoController.cpp
index 302f028..158a3b8 100644
--- a/WebKit/gtk/WebCoreSupport/FullscreenVideoController.cpp
+++ b/WebKit/gtk/WebCoreSupport/FullscreenVideoController.cpp
@@ -213,7 +213,7 @@ void FullscreenVideoController::hideHud()
GdkCursor* cursor = blankCursor();
gdk_window_set_cursor(window, cursor);
- gtk_widget_hide_all(m_hudWindow);
+ gtk_widget_hide(m_hudWindow);
if (m_progressBarUpdateId) {
g_source_remove(m_progressBarUpdateId);
@@ -350,7 +350,7 @@ void FullscreenVideoController::exitFullscreen()
if (m_mediaElement->platformMedia().type == WebCore::PlatformMedia::GStreamerGWorldType)
m_mediaElement->platformMedia().media.gstreamerGWorld->exitFullscreen();
- gtk_widget_hide_all(m_window);
+ gtk_widget_hide(m_window);
gtk_widget_destroy(m_hudWindow);
m_hudWindow = 0;
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list