From: Doyoun Kang Date: Sun, 7 Jul 2024 02:03:18 +0000 (+0900) Subject: e_comp_wl_rsm: reset saved_img flag when the ec is shown X-Git-Tag: accepted/tizen/7.0/unified/20240708.174959~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F314172%2F1;p=platform%2Fupstream%2Fenlightenment.git e_comp_wl_rsm: reset saved_img flag when the ec is shown There was a bug that the capture image was not update in some case. If the window didn't use E_PROCESS action such as internal window, then the saved_img flag didn't reset. Because of this, the capture image could not be updated. This fixed above issue. Change-Id: I7619a41b1813ba84d620cd70931c13fe5fc7e0cc --- diff --git a/src/bin/e_comp_wl_rsm.c b/src/bin/e_comp_wl_rsm.c index ef261969ba..a0db2bb7d4 100644 --- a/src/bin/e_comp_wl_rsm.c +++ b/src/bin/e_comp_wl_rsm.c @@ -2831,6 +2831,8 @@ _e_comp_wl_remote_cb_client_show(void *data, int type, void *event) _remote_surface_prebind_send(remote_surface); } + ec->saved_img = EINA_FALSE; + return ECORE_CALLBACK_PASS_ON; }