kwo pushed a commit to branch master.

http://git.enlightenment.org/e16/e16.git/commit/?id=b3e57584422e1f3f62669700a2fb184de0837179

commit b3e57584422e1f3f62669700a2fb184de0837179
Author: Kim Woelders <[email protected]>
Date:   Mon Apr 4 09:51:55 2022 +0200

    arrange: Minor tweak in SnapEwin()
    
    Use EwinListGetAll() instead of EwinListOrderGet().
    ListWinGroupMembersForEwin() uses EwinListGetAll() (i.e. the stacking
    list) so it seems more consistent to use the same throughout this
    function.
---
 src/arrange.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/arrange.c b/src/arrange.c
index d3a27bb1..b3aab500 100644
--- a/src/arrange.c
+++ b/src/arrange.c
@@ -504,7 +504,7 @@ SnapEwin(EWin * ewin, int dx, int dy, int *new_dx, int 
*new_dy)
    bottom_bound = top_bound + h;
    screen_snap_dist = Mode.constrained ? (w + h) : Conf.snap.screen_snap_dist;
 
-   lst1 = EwinListOrderGet(&num);
+   lst1 = EwinListGetAll(&num);
    if (!lst1)
       return;
 

-- 


Reply via email to