summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--dwm.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 075d961..2d4e7c2 100644
--- a/dwm.c
+++ b/dwm.c
@@ -2419,8 +2419,12 @@ movemouse(const Arg *arg)
else if (abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
ny = selmon->wy + selmon->wh - HEIGHT(c);
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
- && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
+ && (abs(nx - c->x) > snap || abs(ny - c->y) > snap)) {
+ #if SAVEFLOATS_PATCH || EXRESIZE_PATCH
+ c->sfx = -9999; // disable savefloats when using movemouse
+ #endif // SAVEFLOATS_PATCH | EXRESIZE_PATCH
togglefloating(NULL);
+ }
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating) {
#if SAVEFLOATS_PATCH || EXRESIZE_PATCH
resize(c, nx, ny, c->w, c->h, 1);
@@ -2737,8 +2741,12 @@ resizemouse(const Arg *arg)
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
{
if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
- && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
+ && (abs(nw - c->w) > snap || abs(nh - c->h) > snap)) {
+ #if SAVEFLOATS_PATCH || EXRESIZE_PATCH
+ c->sfx = -9999; // disable savefloats when using resizemouse
+ #endif // SAVEFLOATS_PATCH | EXRESIZE_PATCH
togglefloating(NULL);
+ }
}
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating) {
#if RESIZECORNERS_PATCH || RESIZEPOINT_PATCH