Title: [170349] trunk/Tools
Revision
170349
Author
commit-qu...@webkit.org
Date
2014-06-23 23:34:21 -0700 (Mon, 23 Jun 2014)

Log Message

[EFL][WK2] Search field is not shown properly on doing ctrl+f on Minibrowser.
https://bugs.webkit.org/show_bug.cgi?id=134025

Patch by Shivakumar JM <shiva...@samsung.com> on 2014-06-23
Reviewed by Gyuyoung Kim.

Use EVAS_HINT_FILL in evas_object_size_hint_align_set() api.

* MiniBrowser/efl/main.c:
(window_create):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (170348 => 170349)


--- trunk/Tools/ChangeLog	2014-06-24 06:15:25 UTC (rev 170348)
+++ trunk/Tools/ChangeLog	2014-06-24 06:34:21 UTC (rev 170349)
@@ -1,3 +1,15 @@
+2014-06-23  Shivakumar JM  <shiva...@samsung.com>
+
+        [EFL][WK2] Search field is not shown properly on doing ctrl+f on Minibrowser.
+        https://bugs.webkit.org/show_bug.cgi?id=134025
+
+        Reviewed by Gyuyoung Kim.
+
+        Use EVAS_HINT_FILL in evas_object_size_hint_align_set() api.
+
+        * MiniBrowser/efl/main.c:
+        (window_create):
+
 2014-06-23  Ryuan Choi  <ryuan.c...@samsung.com>
 
         [EFL] Replace RefPtr<Evas_Object> with UniquePtrEfl

Modified: trunk/Tools/MiniBrowser/efl/main.c (170348 => 170349)


--- trunk/Tools/MiniBrowser/efl/main.c	2014-06-24 06:15:25 UTC (rev 170348)
+++ trunk/Tools/MiniBrowser/efl/main.c	2014-06-24 06:34:21 UTC (rev 170349)
@@ -1801,7 +1801,7 @@
     window->search.search_bar = elm_box_add(window->elm_window);
     elm_box_horizontal_set(window->search.search_bar, EINA_TRUE);
     evas_object_size_hint_min_set(window->search.search_bar, SEARCH_FIELD_SIZE + 2 * SEARCH_BUTTON_SIZE, 0);
-    evas_object_size_hint_align_set(window->search.search_bar, 0.0, EVAS_HINT_FILL);
+    evas_object_size_hint_align_set(window->search.search_bar, EVAS_HINT_FILL, EVAS_HINT_FILL);
     elm_box_pack_end(vertical_layout, window->search.search_bar);
 
     /* Create Search field */
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to