Title: [176438] trunk/Tools
Revision
176438
Author
[email protected]
Date
2014-11-20 22:26:45 -0800 (Thu, 20 Nov 2014)

Log Message

[EFL] The option value of fixed layout is false in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=138830

Patch by Hunseop Jeong <[email protected]> on 2014-11-20
Reviewed by Gyuyoung Kim.

Changed the option value of fixed layout to EINA_TRUE in MiniBrowser.

* MiniBrowser/efl/main.c:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (176437 => 176438)


--- trunk/Tools/ChangeLog	2014-11-21 04:49:13 UTC (rev 176437)
+++ trunk/Tools/ChangeLog	2014-11-21 06:26:45 UTC (rev 176438)
@@ -1,3 +1,14 @@
+2014-11-20  Hunseop Jeong  <[email protected]>
+
+        [EFL] The option value of fixed layout is false in MiniBrowser
+        https://bugs.webkit.org/show_bug.cgi?id=138830
+
+        Reviewed by Gyuyoung Kim.
+
+        Changed the option value of fixed layout to EINA_TRUE in MiniBrowser.
+
+        * MiniBrowser/efl/main.c:
+
 2014-11-20  Adrian Perez de Castro  <[email protected]>
 
         [GTK] Provide convenience API in DOM bindings to post messages to user message handlers

Modified: trunk/Tools/MiniBrowser/efl/main.c (176437 => 176438)


--- trunk/Tools/MiniBrowser/efl/main.c	2014-11-21 04:49:13 UTC (rev 176437)
+++ trunk/Tools/MiniBrowser/efl/main.c	2014-11-21 06:26:45 UTC (rev 176438)
@@ -182,7 +182,7 @@
         ECORE_GETOPT_STORE_DEF_BOOL
             ('T', "touch-events", "Enable/disable touch events.", EINA_FALSE),
         ECORE_GETOPT_STORE_DEF_BOOL
-            ('L', "fixed-layout", "Enable/disable fixed layout.", EINA_FALSE),
+            ('L', "fixed-layout", "Enable/disable fixed layout.", EINA_TRUE),
         ECORE_GETOPT_STORE_DEF_STR
             ('p', "policy-cookies", "Cookies policy:\n  always - always accept,\n  never - never accept,\n  no-third-party - don't accept third-party cookies.", "no-third-party"),
         ECORE_GETOPT_STORE_DEF_BOOL
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to