dragcfact - if the window is floating, then fall back to resizing the window rather than doing nothing, #19

pull/32/head
bakkeby 4 years ago
parent 32d3d2b7c3
commit cf2e0c1d70

@ -9,8 +9,10 @@ dragcfact(const Arg *arg)
if (!(c = selmon->sel))
return;
if (c->isfloating) /* no support rezising floating windows */
if (c->isfloating) {
resizemouse(arg);
return;
}
#if !FAKEFULLSCREEN_PATCH
#if FAKEFULLSCREEN_CLIENT_PATCH
if (c->isfullscreen && !c->fakefullscreen) /* no support resizing fullscreen windows by mouse */

Loading…
Cancel
Save