raster pushed a commit to branch efl-1.20.

http://git.enlightenment.org/core/efl.git/commit/?id=b33012e725be316bfc365a11969d0f204a99ec02

commit b33012e725be316bfc365a11969d0f204a99ec02
Author: Mike Blumenkrantz <[email protected]>
Date:   Tue Oct 17 11:39:04 2017 -0400

    elm_tooltip: set parent window for windowed tooltips
    
    wayland popup surfaces must have a parent in order to be visible
    
    @fix
---
 src/lib/elementary/els_tooltip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/elementary/els_tooltip.c b/src/lib/elementary/els_tooltip.c
index 0fc32d663b..0bb0f25b18 100644
--- a/src/lib/elementary/els_tooltip.c
+++ b/src/lib/elementary/els_tooltip.c
@@ -146,7 +146,7 @@ _elm_tooltip_show(Elm_Tooltip *tt)
      }
    if (tt->free_size)
      {
-        tt->tt_win = elm_win_add(NULL, "tooltip", ELM_WIN_TOOLTIP);
+        tt->tt_win = elm_win_add(elm_win_get(tt->owner), "tooltip", 
ELM_WIN_TOOLTIP);
         elm_win_override_set(tt->tt_win, EINA_TRUE);
         tt->tt_evas = evas_object_evas_get(tt->tt_win);
         tt->tooltip = edje_object_add(tt->tt_evas);

-- 


Reply via email to