Re: [dwm] please test hg tip and lemme know any issues

From: y i y u s <yiyu.jgl_AT_gmail.com>
Date: Wed, 19 Sep 2007 00:29:19 +0200

2007/9/18, Anselm R. Garbe <arg_AT_suckless.org>:
> Hi there,
>
> I keep in mind testing the togglemax-patch, but please let me
> know any issues in hg tip.
>

Fallback to fixed font isn't working here. It looks like you are
checking the error with an or instead of an and, in initfont:

if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
|| !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))

and imo it should be:

if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))
&& !(dc.font.xfont = XLoadQueryFont(dpy, "fixed")))

It works ok with this little change.
and btw, I find more natural that tiled windows become floating just
when you move them over the SNAP value, but I suppose it depends on
how you use this feature. Anyway atm i will be maintaining the
offscreen windows patch which included this functionality. I would
like to know if anybody have tested this patch, I know it is not for
main dwm, but I find very useful the autohidding windows and if more
people is interested I will write a wiki page.

greets,

-- 
- yiyus || JGL .
Received on Wed Sep 19 2007 - 00:29:20 UTC

This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 14:53:42 UTC