https://bugs.webkit.org/show_bug.cgi?id=79352
Patch by Mario Sanchez Prada <msanchez@igalia.com> on 2012-02-23
Reviewed by Philippe Normand.
Emit the signal 'resizable' instead of 'resizable-visible'.
* UIProcess/API/gtk/WebKitWindowProperties.cpp:
(webkitWindowPropertiesSetResizable): Use right signal name.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@108694
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2012-02-23 Mario Sanchez Prada <msanchez@igalia.com>
+
+ [GTK] Wrong signal name on emission in WebKitWindowProperties.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=79352
+
+ Reviewed by Philippe Normand.
+
+ Emit the signal 'resizable' instead of 'resizable-visible'.
+
+ * UIProcess/API/gtk/WebKitWindowProperties.cpp:
+ (webkitWindowPropertiesSetResizable): Use right signal name.
+
2012-02-23 Anders Carlsson <andersca@apple.com>
Flush layer changes after layout when resizing web page
if (windowProperties->priv->resizable == resizable)
return;
windowProperties->priv->resizable = resizable;
- g_object_notify(G_OBJECT(windowProperties), "resizable-visible");
+ g_object_notify(G_OBJECT(windowProperties), "resizable");
}
void webkitWindowPropertiesSetFullscreen(WebKitWindowProperties* windowProperties, bool fullscreen)