summaryrefslogtreecommitdiffhomepage
path: root/patch/moveplace.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-06-21 09:10:25 +0200
committerbakkeby <[email protected]>2020-06-21 09:10:25 +0200
commit8645b2ce3568b4628f40fb99466c154edc0e338f (patch)
tree86c9f58db28ed6c46366451c33bf12cada8eec4e /patch/moveplace.c
parent62cca4897be4b68257c0679bdc1491f0052cd730 (diff)
downloaddwm-flexipatch-8645b2ce3568b4628f40fb99466c154edc0e338f.tar.gz
dwm-flexipatch-8645b2ce3568b4628f40fb99466c154edc0e338f.zip
Minor style correction
Diffstat (limited to 'patch/moveplace.c')
-rw-r--r--patch/moveplace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/patch/moveplace.c b/patch/moveplace.c
index fb9c099..cfd17a4 100644
--- a/patch/moveplace.c
+++ b/patch/moveplace.c
@@ -14,13 +14,13 @@ moveplace(const Arg *arg)
ny = (arg->ui / 3) -1;
if (nx < 0)
nx = selmon->wx;
- else if(nx > 0)
+ else if (nx > 0)
nx = selmon->wx + selmon->ww - nw - c->bw*2;
else
nx = selmon->wx + selmon->ww/2 - nw/2 - c->bw;
if (ny <0)
ny = selmon->wy;
- else if(ny > 0)
+ else if (ny > 0)
ny = selmon->wy + selmon->wh - nh - c->bw*2;
else
ny = selmon->wy + selmon->wh/2 - nh/2 - c->bw;