Pass TRUE instead of FALSE to do what the comment says.
authorMikael Magnusson <mikachu@comhem.se>
Wed, 27 Feb 2008 00:04:22 +0000 (01:04 +0100)
committerMikael Magnusson <mikachu@comhem.se>
Wed, 27 Feb 2008 03:34:35 +0000 (04:34 +0100)
openbox/client.c

index 26b8dc6..4d63f05 100644 (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;
 }