diff options
| author | Dana Jansens <danakj@orodu.net> | 2002-08-24 20:54:24 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2002-08-24 20:54:24 +0000 |
| commit | 23e92e110e467796437d981c0c5bc129c0e20b8e (patch) | |
| tree | 415b252feb883cad03a8956ab37bd226e220f2c0 /src | |
| parent | 82bf5b555fe292d3699a679bbed17a7fd3047a54 (diff) | |
put !normal windows in the general client list too
Diffstat (limited to 'src')
| -rw-r--r-- | src/Screen.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc index 6d95edbd..1c9c347b 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 if (win->isNormal()) { + } 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 if (w->isNormal()) { + } else { // if (w->isNormal()) { // we don't list desktop windows as managed windows windowList.remove(w); updateClientList(); |
