diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-29 03:30:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-29 03:30:43 +0000 |
| commit | f38be067884c39cc1061c893cc5e7c5a4d99d9b5 (patch) | |
| tree | d901bf9844125b2fa94606486d7fd5bf22cd5b09 /openbox | |
| parent | 66d51f2635a03460b9441c27e3d1206fb2879518 (diff) | |
set the alpha based on iconicness
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/focus_cycle_popup.c | 7 |
1 files changed, 5 insertions, 2 deletions
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 */ |
