From: Dana Jansens Date: Sun, 27 May 2007 22:39:30 +0000 (+0000) Subject: when colormap changes and it is installed, reinstall the new one X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=65bf23c27d99fd1d025c28cd3cae5bf918f8ca8b;p=chaz%2Fopenbox when colormap changes and it is installed, reinstall the new one also add a debug print --- diff --git a/openbox/client.c b/openbox/client.c index 8bdd092d..3f891b5a 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -1534,7 +1534,16 @@ void client_get_colormap(ObClient *self) void client_update_colormap(ObClient *self, Colormap colormap) { - self->colormap = colormap; + if (colormap == self->colormap) return; + + ob_debug("Setting client %s colormap: 0x%x\n", self->title, colormap); + + if (client_focused(self)) { + screen_install_colormap(self, FALSE); /* uninstall old one */ + self->colormap = colormap; + screen_install_colormap(self, FALSE); /* install new one */ + } else + self->colormap = colormap; } void client_update_normal_hints(ObClient *self)