]> Dogcows Code - chaz/openbox/blobdiff - plugins/resistance.c
dockapps are ObWindows now.
[chaz/openbox] / plugins / resistance.c
index 29d51379a204a56669b3a3032f435bba148a5a14..bafd362c0ec8c62a5cf77a204898d0ff6874b1de 100644 (file)
@@ -65,6 +65,8 @@ static void resist_move(Client *c, int *x, int *y)
             Client *target;
             int tl, tt, tr, tb; /* 1 past the target's edges on each side */
 
+            if (!WINDOW_IS_CLIENT(it->data))
+                continue;
             target = it->data;
             /* don't snap to self or non-visibles */
             if (!target->frame->visible || target == c) continue; 
@@ -141,6 +143,10 @@ static void resist_size(Client *c, int *w, int *h, Corner corn)
     int al, at, ar, ab; /* screen boundaries */
     Client *snapx = NULL, *snapy = NULL;
 
+    /* don't snap windows with size increments */
+    if (c->size_inc.width > 1 || c->size_inc.height > 1)
+        return;
+
     l = c->frame->area.x;
     r = l + c->frame->area.width - 1;
     t = c->frame->area.y;
@@ -156,6 +162,8 @@ static void resist_size(Client *c, int *w, int *h, Corner corn)
     /* snap to other windows */
     if (resist_windows) {
         for (it = stacking_list; it != NULL; it = it->next) {
+            if (!WINDOW_IS_CLIENT(it->data))
+                continue;
             target = it->data;
 
             /* don't snap to invisibles or ourself */
@@ -252,15 +260,6 @@ static void resist_size(Client *c, int *w, int *h, Corner corn)
             *h = b - at + 1;
         break;
     }
-
-    /* round down for size increments */
-    *w -= c->frame->area.width + c->frame->size.left + c->frame->size.right;
-    *w = *w / c->size_inc.width * c->size_inc.width;
-    *w += c->frame->area.width + c->frame->size.left + c->frame->size.right;
-
-    *h -= c->frame->area.height + c->frame->size.top + c->frame->size.bottom;
-    *h = *h / c->size_inc.height * c->size_inc.height;
-    *h += c->frame->area.height + c->frame->size.top + c->frame->size.bottom;
 }
 
 static void event(ObEvent *e, void *foo)
This page took 0.023651 seconds and 4 git commands to generate.