raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=721d39c100c34efe63c635e946ba8a183f783e24
commit 721d39c100c34efe63c635e946ba8a183f783e24 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Feb 9 13:23:10 2021 +0000 win layers - stop allowing top windows to go above popups like winlist @fix --- src/bin/e_comp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_comp.h b/src/bin/e_comp.h index f3ebc5285..347cbccb3 100644 --- a/src/bin/e_comp.h +++ b/src/bin/e_comp.h @@ -35,8 +35,8 @@ typedef enum _E_Layer E_LAYER_CLIENT_EDGE = 300, E_LAYER_CLIENT_FULLSCREEN = 350, E_LAYER_CLIENT_EDGE_FULLSCREEN = 400, - E_LAYER_CLIENT_POPUP = 450, - E_LAYER_CLIENT_TOP = 500, + E_LAYER_CLIENT_TOP = 450, + E_LAYER_CLIENT_POPUP = 500, E_LAYER_CLIENT_DRAG = 550, E_LAYER_CLIENT_PRIO = 600, E_LAYER_POPUP = 999, // popups --
