Title: [89438] trunk/Tools
Revision
89438
Author
[email protected]
Date
2011-06-22 09:21:33 -0700 (Wed, 22 Jun 2011)

Log Message

2011-06-22  Carlos Garcia Campos  <[email protected]>

        Reviewed by Martin Robinson.

        [GTK] Apply current view settings to newly created views in GtkLauncher
        https://bugs.webkit.org/show_bug.cgi?id=63142

        * GtkLauncher/main.c:
        (createWebViewCb):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (89437 => 89438)


--- trunk/Tools/ChangeLog	2011-06-22 16:20:07 UTC (rev 89437)
+++ trunk/Tools/ChangeLog	2011-06-22 16:21:33 UTC (rev 89438)
@@ -2,6 +2,16 @@
 
         Reviewed by Martin Robinson.
 
+        [GTK] Apply current view settings to newly created views in GtkLauncher
+        https://bugs.webkit.org/show_bug.cgi?id=63142
+
+        * GtkLauncher/main.c:
+        (createWebViewCb):
+
+2011-06-22  Carlos Garcia Campos  <[email protected]>
+
+        Reviewed by Martin Robinson.
+
         [GTK] Use GOption to parse main arguments in GtkLauncher
         https://bugs.webkit.org/show_bug.cgi?id=63060
 

Modified: trunk/Tools/GtkLauncher/main.c (89437 => 89438)


--- trunk/Tools/GtkLauncher/main.c	2011-06-22 16:20:07 UTC (rev 89437)
+++ trunk/Tools/GtkLauncher/main.c	2011-06-22 16:21:33 UTC (rev 89438)
@@ -109,6 +109,7 @@
 {
     WebKitWebView *newWebView;
     createWindow(&newWebView);
+    webkit_web_view_set_settings(newWebView, webkit_web_view_get_settings(webView));
     return newWebView;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to