From f502a392aaa321865c072dea63e25b668a1598a3 Mon Sep 17 00:00:00 2001 From: Derek Foreman Date: Mon, 9 Jun 2003 22:30:46 +0000 Subject: [PATCH] fix? color on icons --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/client.c b/openbox/client.c index 82e1f5f6..c54dbd67 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1348,7 +1348,7 @@ void client_update_icons(Client *self) x = 0; ++y; } - self->icons[j].data[t] = data[i]; + self->icons[j].data[t] = (data[i] << 8) & (data[i] >> 24); } g_assert(i <= num); } -- 2.34.1