2007/9/18, Anselm R. Garbe <[EMAIL PROTECTED]>: > 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 .
