From: Dana Jansens Date: Sun, 28 Jul 2002 17:37:31 +0000 (+0000) Subject: dont assert for focusing !isNormal() windows X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=86af1224bd80ed987f9c2389efa9bf9744ebada8;p=chaz%2Fopenbox dont assert for focusing !isNormal() windows --- diff --git a/src/Workspace.cc b/src/Workspace.cc index 88541b07..70d1923c 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc @@ -231,9 +231,10 @@ void Workspace::setFocused(const BlackboxWindow *w, bool focused) { for (i = 0, it = windowList.begin(); it != end; ++it, ++i) if (*it == w) break; - assert(it != end); - - clientmenu->setItemSelected(i, focused); + // if its == end, then a window thats not in the windowList + // got focused, such as a !isNormal() window. + if (it != end) + clientmenu->setItemSelected(i, focused); }