t* My version of sent
       
   URI git clone git://git.codevoid.de/sent-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d06622336b5e9ae65f69277eea1a292e3c0d6894
   DIR parent 8215db707caea46a5ba1d8b6c43ed36390b7d5d8
   URI Author: Markus Teich <markus.teich@stusta.mhn.de>
       Date:   Sun,  3 May 2015 22:07:51 +0200
       
       drw_resize should be called on mapping as well
       
       Diffstat:
         M sent.c                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/sent.c b/sent.c
       t@@ -431,6 +431,7 @@ void resize(int width, int height)
                xw.h = height;
                xw.uw = usablewidth * width;
                xw.uh = usableheight * height;
       +        drw_resize(d, width, height);
        }
        
        void run()
       t@@ -592,7 +593,6 @@ void kpress(XEvent *e)
        void configure(XEvent *e)
        {
                resize(e->xconfigure.width, e->xconfigure.height);
       -        drw_resize(d, e->xconfigure.width, e->xconfigure.height);
                if (slides[idx].img)
                        slides[idx].img->state &= ~(DRAWN | SCALED);
                xdraw();