all repos — openbox @ cb5cc0d7ac8008fbd00614ef05acdc68fb60c5ed

openbox fork - make it a bit more like ryudo

trying to be as cool as mika /._.;\
Dana Jansens danakj@orodu.net
commit

cb5cc0d7ac8008fbd00614ef05acdc68fb60c5ed

parent

1d267613a3c3423d00150a9ba778f229385cd03e

1 files changed, 3 insertions(+), 5 deletions(-)

jump to
M openbox/focus_cycle_popup.copenbox/focus_cycle_popup.c

@@ -421,11 +421,9 @@ /* get the icon from the client */

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; - if (target->client->iconic) - /* 7/16 alpha */ - p->a_icon->texture[0].data.rgba.alpha = 0xff*7/16; - else - p->a_icon->texture[0].data.rgba.alpha = 0xff; + /* 7/16 alpha for iconic windows */ + p->a_icon->texture[0].data.rgba.alpha = + target->client->iconic ? 0x70 : 0xff; p->a_icon->texture[0].data.rgba.data = icon->data; /* draw the icon */