From 65bf23c27d99fd1d025c28cd3cae5bf918f8ca8b Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 27 May 2007 22:39:30 +0000 Subject: [PATCH] when colormap changes and it is installed, reinstall the new one also add a debug print --- openbox/client.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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) -- 2.39.2