Title: [141567] trunk/Source/WebKit/qt
Revision
141567
Author
[email protected]
Date
2013-02-01 02:35:31 -0800 (Fri, 01 Feb 2013)

Log Message

[Qt] visibility of embedded widget
https://bugs.webkit.org/show_bug.cgi?id=108327

Rubber-stamped by Simon Hausmann.

In overriding Widget::show in QtPluginWidget, we forgot to call the
parent implementation, which as it turns, out does sensible stuff.

* WebCoreSupport/FrameLoaderClientQt.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebKit/qt/ChangeLog (141566 => 141567)


--- trunk/Source/WebKit/qt/ChangeLog	2013-02-01 10:25:16 UTC (rev 141566)
+++ trunk/Source/WebKit/qt/ChangeLog	2013-02-01 10:35:31 UTC (rev 141567)
@@ -1,3 +1,15 @@
+2013-02-01  Pierre Rossi  <[email protected]>
+
+        [Qt] visibility of embedded widget
+        https://bugs.webkit.org/show_bug.cgi?id=108327
+
+        Rubber-stamped by Simon Hausmann.
+
+        In overriding Widget::show in QtPluginWidget, we forgot to call the
+        parent implementation, which as it turns, out does sensible stuff.
+
+        * WebCoreSupport/FrameLoaderClientQt.cpp:
+
 2013-01-31  Enrica Casucci  <[email protected]>
 
         WebKit2: provide new bundle APIs to allow bundle clients to be notified of pasteboard access.

Modified: trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp (141566 => 141567)


--- trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2013-02-01 10:25:16 UTC (rev 141566)
+++ trunk/Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp	2013-02-01 10:35:31 UTC (rev 141567)
@@ -1436,6 +1436,7 @@
     }
     virtual void hide()
     {
+        Widget::hide();
         if (platformWidget())
             widgetAdapter()->setVisible(false);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to