From: Mikael Magnusson Date: Wed, 27 Feb 2008 00:04:22 +0000 (+0100) Subject: Pass TRUE instead of FALSE to do what the comment says. X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=c11a7c3ce1b5ad56d43db977ed44f60dfb56ab45;hp=04bf68c2acab42a5d0922d99daffee749d800690;p=chaz%2Fopenbox Pass TRUE instead of FALSE to do what the comment says. --- diff --git a/openbox/client.c b/openbox/client.c index 26b8dc69..4d63f058 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -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; }