Pass TRUE instead of FALSE to do what the comment says.

This commit is contained in:
Mikael Magnusson 2008-02-27 01:04:22 +01:00
parent 04bf68c2ac
commit c11a7c3ce1

View file

@ -1607,7 +1607,7 @@ void client_update_colormap(ObClient *self, Colormap colormap)
if (client_focused(self)) {
screen_install_colormap(self, FALSE); /* uninstall old one */
self->colormap = colormap;
screen_install_colormap(self, FALSE); /* install new one */
screen_install_colormap(self, TRUE); /* install new one */
} else
self->colormap = colormap;
}