summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openbox/screen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c
index 073b565f..550d7266 100644
--- a/openbox/screen.c
+++ b/openbox/screen.c
@@ -423,13 +423,14 @@ void screen_show_desktop(gboolean show)
void screen_install_colormap(Client *client, gboolean install)
{
+ XWindowAttributes wa;
+
if (client == NULL) {
if (install)
XInstallColormap(ob_display, render_colormap);
else
XUninstallColormap(ob_display, render_colormap);
} else {
- XWindowAttributes wa;
if (XGetWindowAttributes(ob_display, client->window, &wa) &&
wa.colormap != None) {
if (install)