diff options
author | markt <markt> | 2007-01-14 19:04:38 (GMT) |
---|---|---|
committer | markt <markt> | 2007-01-14 19:04:38 (GMT) |
commit | 6512024f08e71c10b41040318e7dc0f9a5810224 (patch) | |
tree | c4f7c8b9f1f3268194d04a00a4e76b1bec8f983d /src/Window.cc | |
parent | fc502861a45704a8f7cd21282cbccd7e5ac620f3 (diff) | |
download | fluxbox-6512024f08e71c10b41040318e7dc0f9a5810224.zip fluxbox-6512024f08e71c10b41040318e7dc0f9a5810224.tar.bz2 |
allow windows to deiconify themselves
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index a3a10c5..642a76b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -2479,7 +2479,8 @@ void FluxboxWindow::mapRequestEvent(XMapRequestEvent &re) { | |||
2479 | destroyed = wsp->checkGrouping(*this); | 2479 | destroyed = wsp->checkGrouping(*this); |
2480 | 2480 | ||
2481 | // if we weren't grouped with another window we deiconify ourself | 2481 | // if we weren't grouped with another window we deiconify ourself |
2482 | if (!destroyed && !iconic) | 2482 | // make sure iconified windows stay that way on fluxbox start |
2483 | if (!destroyed && !(iconic && Fluxbox::instance()->isStartup())) | ||
2483 | deiconify(false); | 2484 | deiconify(false); |
2484 | 2485 | ||
2485 | } | 2486 | } |