Introduction
Introduction Statistics Contact Development Disclaimer Help
tfixing zoom - dwm - [fork] customized build of dwm, the dynamic window manager
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit 52a3ab10423a4133e38281e4e19769cd3c2ed931
parent a82e7b765e8da9fedb8fae6b102796f0494a4f5e
Author: Anselm R. Garbe <[email protected]>
Date: Tue, 5 Sep 2006 17:10:48 +0200
fixing zoom
Diffstat:
M view.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/view.c b/view.c
t@@ -317,9 +317,10 @@ zoom(Arg *arg)
if(!sel || sel->isfloat || n < 2 || (arrange != dotile) || maximized)
return;
- if((c = sel) == getnext(clients))
- if(!(c = getnext(c->next)))
- return;
+ if((c = sel) == getnext(clients))
+ for(c = getnext(c->next); c && c->isfloat; c = getnext(c->next…
+ if(!c)
+ return;
detach(c);
c->next = clients;
clients->prev = c;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.