X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=util%2Fbsetroot.cc;h=cd047c2a63cc146d74cd2aba24e98ac005eb92e5;hb=6284d4ef9036764d4e6f708ca5f38aa7c1749865;hp=470ca7b3ead64d6d89cb67fb7dcf25212603ce46;hpb=3531afa1cca6fe135013b925999d3b62291c0acb;p=chaz%2Fopenbox diff --git a/util/bsetroot.cc b/util/bsetroot.cc index 470ca7b3..cd047c2a 100644 --- a/util/bsetroot.cc +++ b/util/bsetroot.cc @@ -1,5 +1,5 @@ // -*- mode++; indent-tabs-mode: nil; c-basic-offset: 2; -*- -// Window.cc for Blackbox - an X11 Window manager +// bsetroot.cc for Blackbox - an X11 Window manager // Copyright (c) 2001 - 2002 Sean 'Shaleh' Perry // Copyright (c) 1997 - 2000, 2002 Brad Hughes // @@ -150,11 +150,19 @@ void bsetroot::setPixmapProperty(int screen, Pixmap pixmap) { /* Clear out the old pixmap */ XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(), - rootpmap_id, 0L, 1L, False, XA_PIXMAP, - &type, &format, &length, &after, &data); - if (type == XA_PIXMAP && format == 32) { - XKillClient(getXDisplay(), *((Pixmap *) data)); - XSync(getXDisplay(), False); + rootpmap_id, 0L, 1L, False, AnyPropertyType, + &type, &format, &length, &after, &data); + + if ((type == XA_PIXMAP) && (format == 32) && (length == 1)) { + unsigned char* data_esetroot = 0; + XGetWindowProperty(getXDisplay(), screen_info->getRootWindow(), + esetroot_id, 0L, 1L, False, AnyPropertyType, + &type, &format, &length, &after, &data_esetroot); + if (data && data_esetroot && *((Pixmap *) data)) { + XKillClient(getXDisplay(), *((Pixmap *) data)); + XSync(getXDisplay(), False); + XFree(data_esetroot); + } XFree(data); }