From: Junseok Kim Date: Wed, 20 Nov 2024 10:33:23 +0000 (+0900) Subject: e_view: fix the iterate direction of the stack update X-Git-Tag: accepted/tizen/9.0/unified/20241224.014905~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F01%2F317001%2F1;p=platform%2Fupstream%2Fenlightenment.git e_view: fix the iterate direction of the stack update Change-Id: I293a51e1bb4d6f9be3f774f6e9257412c85ecffe (cherry picked from commit 21cb71f804b55c27654730db27fe0b435e703c59) --- diff --git a/src/bin/core/e_view.c b/src/bin/core/e_view.c index 6bbaa714a3..92bd9b3288 100644 --- a/src/bin/core/e_view.c +++ b/src/bin/core/e_view.c @@ -167,7 +167,7 @@ _view_eo_stack_update(E_View *view) { data.target_view = above_view; data.restack_func = evas_object_stack_below; - _view_for_each_view(view, 0, 0, &_view_iterator_cb_stack_update, &data, false); + _view_for_each_view(view, 0, 0, &_view_iterator_cb_stack_update, &data, true); } }