ttiled layout resizehints should be respected by default - 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 f25cc5678fcc405a55df7f49e7b3189241933a97
 (DIR) parent 5a92420fce8d70a329a8294c1c77bb8c3c7eaad4
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Tue, 17 Jun 2008 11:19:17 +0100
       
       ttiled layout resizehints should be respected by default
       Diffstat:
         M config.def.h                        |       4 ++--
         M dwm.c                               |       6 +++---
       
       2 files changed, 5 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/config.def.h b/config.def.h
       t@@ -27,8 +27,8 @@ static Rule rules[] = {
        };
        
        /* layout(s) */
       -static float mfact           = 0.55;
       -static Bool resizehints       = False;     /* False means respect size hints in tiled resizals */
       +static float mfact      = 0.55;
       +static Bool resizehints = True; /* False means respect size hints in tiled resizals */
        
        static Layout layouts[] = {
                /* symbol     arrange function */
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -1094,11 +1094,11 @@ resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
        
                        w = MAX(w, c->minw);
                        h = MAX(h, c->minh);
       -                
       -                if (c->maxw)
       +
       +                if(c->maxw)
                                w = MIN(w, c->maxw);
        
       -                if (c->maxh)
       +                if(c->maxh)
                                h = MIN(h, c->maxh);
                }
                if(w <= 0 || h <= 0)