From c11a7c3ce1b5ad56d43db977ed44f60dfb56ab45 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Wed, 27 Feb 2008 01:04:22 +0100 Subject: [PATCH] Pass TRUE instead of FALSE to do what the comment says. --- openbox/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.45.2