diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2008-02-27 01:04:22 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2008-02-27 04:34:35 +0100 |
| commit | c11a7c3ce1b5ad56d43db977ed44f60dfb56ab45 (patch) | |
| tree | 9bef9c4194bf9e50aec3ca84c7b68d758c3bd7ab /openbox/client.c | |
| parent | 04bf68c2acab42a5d0922d99daffee749d800690 (diff) | |
Pass TRUE instead of FALSE to do what the comment says.
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
