tapplied jukkas patch - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 3c4b7672a84f4be9eeba889abda15a33c9b45eb1
(DIR) parent 6de149eb22c889174d34f6f8d12466388f29aabf
(HTM) Author: arg@mmvi <unknown>
Date: Fri, 22 Sep 2006 15:39:38 +0200
applied jukkas patch
Diffstat:
M view.c | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
---
(DIR) diff --git a/view.c b/view.c
t@@ -102,14 +102,8 @@ dotile(Arg *arg) {
w = sw - mw;
for(n = 0, c = clients; c; c = c->next)
- if(isvisible(c)) {
- if(c->isfloat) {
- if(c->ismax)
- togglemax(c);
- }
- else
- n++;
- }
+ if(isvisible(c) && !c->isfloat)
+ n++;
if(n > 1)
h = (sh - bh) / (n - 1);
t@@ -118,6 +112,8 @@ dotile(Arg *arg) {
for(i = 0, c = clients; c; c = c->next) {
if(isvisible(c)) {
+ if(c->ismax)
+ togglemax(c);
if(c->isfloat) {
resize(c, True, TopLeft);
continue;