projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3ad19e4
)
unmanage desktop windows on shutdown
author
Dana Jansens
<danakj@orodu.net>
Mon, 26 Aug 2002 00:25:08 +0000
(
00:25
+0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 26 Aug 2002 00:25:08 +0000
(
00:25
+0000)
src/Screen.cc
patch
|
blob
|
history
diff --git
a/src/Screen.cc
b/src/Screen.cc
index a1cae41f8cb93a8e66b136d98757c259a0fa1c2b..235a04a78c788bd7e377633d607bd816e9f83ef0 100644
(file)
--- a/
src/Screen.cc
+++ b/
src/Screen.cc
@@
-2221,6
+2221,12
@@
void BScreen::shutdown(void) {
while(! windowList.empty())
unmanageWindow(windowList.front(), True);
+ while(! desktopWindowList.empty()) {
+ BlackboxWindow *win = blackbox->searchWindow(desktopWindowList.front());
+ assert(win);
+ unmanageWindow(win, True);
+ }
+
slit->shutdown();
}