Browse Source

applied Jukka's zoom-patch

main
Anselm R Garbe 16 years ago
parent
commit
4426032450
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dwm.c

+ 2
- 2
dwm.c View File

@ -2009,11 +2009,11 @@ viewprevtag(const char *arg) {
void
zoom(const char *arg) {
Client *c;
Client *c = sel;
if(!sel || !dozoom || sel->isfloating)
return;
if((c = sel) == nexttiled(clients, c->monitor))
if(c == nexttiled(clients, c->monitor))
if(!(c = nexttiled(c->next, c->monitor)))
return;
detach(c);


Loading…
Cancel
Save