From: Dana Jansens Date: Sat, 24 Aug 2002 19:58:25 +0000 (+0000) Subject: try see if this broke gnome-panel X-Git-Tag: openbox-2_1_0~87 X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=b1da899b3264b93a40aa638bc5fb65831bdcc464;p=dana%2Fopenbox.git try see if this broke gnome-panel --- diff --git a/src/Screen.cc b/src/Screen.cc index bdae4dac..6d95edbd 100644 --- a/src/Screen.cc +++ b/src/Screen.cc @@ -1397,7 +1397,7 @@ void BScreen::manageWindow(Window w) { if (win->isDesktop()) { desktopWindowList.push_back(win->getFrameWindow()); - } else { + } else if (win->isNormal()) { // don't list desktop windows as managed windows windowList.push_back(win); updateClientList(); @@ -1448,7 +1448,7 @@ void BScreen::unmanageWindow(BlackboxWindow *w, bool remap) { break; } assert(it != end); // the window wasnt a desktop window? - } else { + } else if (w->isNormal()) { // we don't list desktop windows as managed windows windowList.remove(w); updateClientList();