]> Dogcows Code - chaz/openbox/commitdiff
don't snap to below+skiptaskbar (desklets)
authorDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 14:39:23 +0000 (14:39 +0000)
committerDana Jansens <danakj@orodu.net>
Wed, 13 Jun 2007 14:39:23 +0000 (14:39 +0000)
openbox/resist.c

index 3ab04a98d5bc031f2446e4611adb945d276b1712..e3d32d64a956e0bf3a2cddfac486f9e3bdd1bfba 100644 (file)
@@ -61,6 +61,8 @@ 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;
 
         tl = RECT_LEFT(target->frame->area) - 1;
         tt = RECT_TOP(target->frame->area) - 1;
@@ -217,6 +219,8 @@ 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;
 
         tl = RECT_LEFT(target->frame->area);
         tr = RECT_RIGHT(target->frame->area);
This page took 0.029572 seconds and 4 git commands to generate.