make shading work

This commit is contained in:
Dana Jansens 2002-07-20 08:24:51 +00:00
parent 7d153b742b
commit b4816f2417

View file

@ -145,5 +145,6 @@ void XWindow::processEvent(const XEvent &e) {
void XWindow::shade(const bool sh) const {
_xatom->sendClientMessage(_screen->rootWindow(), XAtom::net_wm_state,
_window, (sh ? 1 : 0), XAtom::net_wm_state_shaded);
_window, (sh ? 1 : 0),
_xatom->getAtom(XAtom::net_wm_state_shaded));
}