all repos — openbox @ 65bf23c27d99fd1d025c28cd3cae5bf918f8ca8b

openbox fork - make it a bit more like ryudo

when colormap changes and it is installed, reinstall the new one
also add a debug print
Dana Jansens danakj@orodu.net
commit

65bf23c27d99fd1d025c28cd3cae5bf918f8ca8b

parent

a59540f25aed8551262a89b6426b201546a8418c

1 files changed, 10 insertions(+), 1 deletions(-)

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

@@ -1534,7 +1534,16 @@ }

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)