From 75973a587d5940d759fac200ebd258aed0246dfb Mon Sep 17 00:00:00 2001 From: junghwan Choi Date: Tue, 21 Feb 2017 13:57:21 +0900 Subject: [PATCH] e_policy_wl: fix splash screen bug - argb is not set when replaced Change-Id: Ie1c1d9eb258b7354a6ac3fce1c0f03dbf99e390d Signed-off-by: junghwan Choi --- src/bin/e_policy_wl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/e_policy_wl.c b/src/bin/e_policy_wl.c index 87f2ea49c9..79f341ea60 100644 --- a/src/bin/e_policy_wl.c +++ b/src/bin/e_policy_wl.c @@ -5352,6 +5352,7 @@ _tzlaunch_img_iface_cb_owner(struct wl_client *client EINA_UNUSED, struct wl_res e_client_unignore(new_ec); new_ec->visible = EINA_TRUE; new_ec->new_client = EINA_FALSE; + new_ec->argb = old_ec->argb; e_comp->launchscrns = eina_list_append(e_comp->launchscrns, new_ec); @@ -5435,7 +5436,7 @@ _tzlaunch_splash_iface_cb_owner(struct wl_client *client EINA_UNUSED, struct wl_ new_ec->ignored = EINA_FALSE; new_ec->visible = EINA_TRUE; new_ec->new_client = EINA_FALSE; - + new_ec->argb = old_ec->argb; new_ec->effect_type = old_ec->effect_type; e_comp->launchscrns = eina_list_append(e_comp->launchscrns, new_ec); -- 2.34.1