unmanage desktop windows on shutdown
This commit is contained in:
parent
3ad19e4a45
commit
d9c0cfedbd
1 changed files with 6 additions and 0 deletions
|
@ -2221,6 +2221,12 @@ void BScreen::shutdown(void) {
|
||||||
while(! windowList.empty())
|
while(! windowList.empty())
|
||||||
unmanageWindow(windowList.front(), True);
|
unmanageWindow(windowList.front(), True);
|
||||||
|
|
||||||
|
while(! desktopWindowList.empty()) {
|
||||||
|
BlackboxWindow *win = blackbox->searchWindow(desktopWindowList.front());
|
||||||
|
assert(win);
|
||||||
|
unmanageWindow(win, True);
|
||||||
|
}
|
||||||
|
|
||||||
slit->shutdown();
|
slit->shutdown();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue