From: Marcel Hollerbach Date: Sun, 14 Dec 2014 11:21:16 +0000 (+0100) Subject: e_win: Fix Dialog Titles X-Git-Tag: upstream/0.19.99~388 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec64288d4f693cb1d5f8f4c58f381df001066b42;p=platform%2Fupstream%2Fenlightenment.git e_win: Fix Dialog Titles We should not set the title to "E" in the trap function of show. If we do this we will override the icccm title and the netwm name, this mean e_comp_x will set E as title of the window if the call to elm_win_title_set was BEFORE the window was shown. Now the name which was set before will be inserted. --- diff --git a/src/bin/e_win.c b/src/bin/e_win.c index 45c9cf2..8e2d202 100644 --- a/src/bin/e_win.c +++ b/src/bin/e_win.c @@ -89,7 +89,7 @@ _e_elm_win_trap_show(void *data, Evas_Object *o) E_Comp *c = NULL; ecore_evas_name_class_set(ee, "E", "_e_internal_window"); - ecore_evas_title_set(ee, "E"); + ecore_evas_title_set(ee, elm_win_title_get(o)); cp = e_pixmap_new(type, win); EINA_SAFETY_ON_NULL_RETURN_VAL(cp, EINA_TRUE);