diff options
| author | bakkeby <[email protected]> | 2020-06-21 09:10:25 +0200 |
|---|---|---|
| committer | bakkeby <[email protected]> | 2020-06-21 09:10:25 +0200 |
| commit | 8645b2ce3568b4628f40fb99466c154edc0e338f (patch) | |
| tree | 86c9f58db28ed6c46366451c33bf12cada8eec4e /patch/moveplace.c | |
| parent | 62cca4897be4b68257c0679bdc1491f0052cd730 (diff) | |
| download | dwm-flexipatch-8645b2ce3568b4628f40fb99466c154edc0e338f.tar.gz dwm-flexipatch-8645b2ce3568b4628f40fb99466c154edc0e338f.zip | |
Minor style correction
Diffstat (limited to 'patch/moveplace.c')
| -rw-r--r-- | patch/moveplace.c | 4 |
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; |
