From: Dana Jansens Date: Wed, 13 Jun 2007 14:40:05 +0000 (+0000) Subject: let desklets snap to eachother X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=338798a408e52304cc560093247e496e73b20140;hp=042b6bc5f7b94de4718d7baac02d84c9aa1d875e;p=chaz%2Fopenbox let desklets snap to eachother --- diff --git a/openbox/resist.c b/openbox/resist.c index e3d32d64..211a012c 100644 --- a/openbox/resist.c +++ b/openbox/resist.c @@ -62,7 +62,7 @@ void resist_move_windows(ObClient *c, gint resist, gint *x, gint *y) /* don't snap to self or non-visibles */ if (!target->frame->visible || target == c) continue; /* don't snap to windows set to below and skip_taskbar (desklets) */ - if (target->below && target->skip_taskbar) continue; + if (target->below && !c->below && target->skip_taskbar) continue; tl = RECT_LEFT(target->frame->area) - 1; tt = RECT_TOP(target->frame->area) - 1; @@ -220,7 +220,7 @@ void resist_size_windows(ObClient *c, gint resist, gint *w, gint *h, /* don't snap to invisibles or ourself */ if (!target->frame->visible || target == c) continue; /* don't snap to windows set to below and skip_taskbar (desklets) */ - if (target->below && target->skip_taskbar) continue; + if (target->below && !c->below && target->skip_taskbar) continue; tl = RECT_LEFT(target->frame->area); tr = RECT_RIGHT(target->frame->area);