From 46870c46b5b3c5515687a81597a699b3c601dfae Mon Sep 17 00:00:00 2001 From: Eric Schuele Date: Fri, 12 Oct 2012 01:21:24 +0000 Subject: [PATCH] TRAC#1222 Resolve sticky windows not offering resistance on window_push for desktops other than that which they belong. SVN revision: 77927 --- src/bin/e_actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 92352596b..eeff49b6a 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1114,7 +1114,7 @@ ACT_FN_GO(window_push, ) while (cur) { - if ((bd->desk == cur->desk) && (bd != cur) && (!cur->iconic)) + if (((bd->desk == cur->desk) || (cur->sticky)) && (bd != cur) && (!cur->iconic)) { if ((hdir < 0) && (cur->x + cur->w < bd->x)