applied Jukka's cosmetic patch

This commit is contained in:
Anselm R Garbe 2009-08-16 08:18:54 +01:00
parent 8ef465d592
commit 42750a621b
1 changed files with 9 additions and 9 deletions

18
dwm.c
View File

@ -564,9 +564,9 @@ configurerequest(XEvent *e) {
c->w = ev->width; c->w = ev->width;
if(ev->value_mask & CWHeight) if(ev->value_mask & CWHeight)
c->h = ev->height; c->h = ev->height;
if((c->x - m->mx + c->w) > m->mw && c->isfloating) if((c->x + c->w) > m->mx + m->mw && c->isfloating)
c->x = m->mx + (m->mw / 2 - c->w / 2); /* center in x direction */ c->x = m->mx + (m->mw / 2 - c->w / 2); /* center in x direction */
if((c->y - m->my + c->h) > m->mh && c->isfloating) if((c->y + c->h) > m->my + m->mh && c->isfloating)
c->y = m->my + (m->mh / 2 - c->h / 2); /* center in y direction */ c->y = m->my + (m->mh / 2 - c->h / 2); /* center in y direction */
if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight))) if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
configure(c); configure(c);
@ -1595,23 +1595,23 @@ togglefloating(const Arg *arg) {
void void
toggletag(const Arg *arg) { toggletag(const Arg *arg) {
unsigned int mask; unsigned int newtags;
if(!selmon->sel) if(!selmon->sel)
return; return;
mask = selmon->sel->tags ^ (arg->ui & TAGMASK); newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
if(mask) { if(newtags) {
selmon->sel->tags = mask; selmon->sel->tags = newtags;
arrange(); arrange();
} }
} }
void void
toggleview(const Arg *arg) { toggleview(const Arg *arg) {
unsigned int mask = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK); unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
if(mask) { if(newtagset) {
selmon->tagset[selmon->seltags] = mask; selmon->tagset[selmon->seltags] = newtagset;
arrange(); arrange();
} }
} }