when colormap changes and it is installed, reinstall the new one

also add a debug print
This commit is contained in:
Dana Jansens 2007-05-27 22:39:30 +00:00
parent a59540f25a
commit 65bf23c27d

View file

@ -1534,6 +1534,15 @@ void client_get_colormap(ObClient *self)
void client_update_colormap(ObClient *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;
}