From: Dana Jansens Date: Tue, 29 May 2007 03:30:43 +0000 (+0000) Subject: set the alpha based on iconicness X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=f38be067884c39cc1061c893cc5e7c5a4d99d9b5;p=chaz%2Fopenbox set the alpha based on iconicness --- diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index ee033700..7d132b6a 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -422,8 +422,11 @@ static void popup_render(ObFocusCyclePopup *p, const ObClient *c) icon = client_icon(target->client, innerw, innerh); p->a_icon->texture[0].data.rgba.width = icon->width; p->a_icon->texture[0].data.rgba.height = icon->height; - /* 7/16 alpha */ - p->a_icon->texture[0].data.rgba.alpha = (0xff>>1 - 0xff>>4); + if (target->client->iconic) + /* 7/16 alpha */ + p->a_icon->texture[0].data.rgba.alpha = (0xff>>1 - 0xff>>4); + else + p->a_icon->texture[0].data.rgba.alpha = 0xff; p->a_icon->texture[0].data.rgba.data = icon->data; /* draw the icon */