Title: [151483] trunk/Tools
Revision
151483
Author
commit-qu...@webkit.org
Date
2013-06-11 19:54:35 -0700 (Tue, 11 Jun 2013)

Log Message

[EFL] Window resize should close the popupmenu
https://bugs.webkit.org/show_bug.cgi?id=117391

Patch by Santosh Mahto <santosh...@samsung.com> on 2013-06-11
Reviewed by Christophe Dumez.

Added the code to close the popup when main window is resized.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (151482 => 151483)


--- trunk/Tools/ChangeLog	2013-06-12 01:47:29 UTC (rev 151482)
+++ trunk/Tools/ChangeLog	2013-06-12 02:54:35 UTC (rev 151483)
@@ -1,3 +1,15 @@
+2013-06-11  Santosh Mahto  <santosh...@samsung.com>
+
+        [EFL] Window resize should close the popupmenu
+        https://bugs.webkit.org/show_bug.cgi?id=117391
+
+        Reviewed by Christophe Dumez.
+        
+        Added the code to close the popup when main window is resized.
+
+        * MiniBrowser/efl/main.c:
+        (on_window_resize):
+
 2013-06-11  Alex Christensen  <achristen...@apple.com>
 
         Removed old broken code coverage tool.

Modified: trunk/Tools/MiniBrowser/efl/main.c (151482 => 151483)


--- trunk/Tools/MiniBrowser/efl/main.c	2013-06-12 01:47:29 UTC (rev 151482)
+++ trunk/Tools/MiniBrowser/efl/main.c	2013-06-12 02:54:35 UTC (rev 151483)
@@ -282,6 +282,10 @@
 
     if (window->context_menu.ewk_menu)
         ewk_context_menu_hide(window->context_menu.ewk_menu);
+    if (window->popup.ewk_menu)
+        ewk_popup_menu_close(window->popup.ewk_menu);
+    if (window->popup.elm_menu)
+        elm_menu_close(window->popup.elm_menu);
 }
 
 static void window_free(Browser_Window *window)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to