diff options
Diffstat (limited to 'src')
-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 | } |