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.
This commit is contained in:
Kim Woelders 2022-04-04 09:51:55 +02:00
parent c5ffe964b0
commit b3e5758442
1 changed files with 1 additions and 1 deletions

View File

@ -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;