From 270df196ac17363536c44fe342b4e71e1c8450e3 Mon Sep 17 00:00:00 2001 From: okan Date: Mon, 20 May 2013 20:21:04 +0000 Subject: - configure menuwin with the screen, then create the xft drawable using the menu window since that's the only place on which we draw - elminate the need to change the drawable on every font draw --- xutil.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'xutil.c') diff --git a/xutil.c b/xutil.c index 3e2b36c..d5055f2 100644 --- a/xutil.c +++ b/xutil.c @@ -442,10 +442,8 @@ xu_xft_width(XftFont *xftfont, const char *text, int len) } void -xu_xft_draw(struct screen_ctx *sc, const char *text, - Drawable d, int color, int x, int y) +xu_xft_draw(struct screen_ctx *sc, const char *text, int color, int x, int y) { - XftDrawChange(sc->xftdraw, d); XftDrawStringUtf8(sc->xftdraw, &sc->xftcolor[color], sc->xftfont, x, y, (const FcChar8*)text, strlen(text)); } -- cgit 1.4.1