summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2008-10-07 07:59:05 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2008-10-07 07:59:05 (GMT)
commita97ba40053c446ae1fb19f5cd381b4188adac22f (patch)
treea5d869fd27ca1ae2d626e4dd10bd73db8c82b899
parent1fdef35e51e10da72652215b1ee8926be79ff748 (diff)
downloadfluxbox_lack-a97ba40053c446ae1fb19f5cd381b4188adac22f.zip
fluxbox_lack-a97ba40053c446ae1fb19f5cd381b4188adac22f.tar.bz2
fix windows mapping into IconicState again
-rw-r--r--src/Window.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 4f92e86..8c50f39 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -390,6 +390,9 @@ void FluxboxWindow::init() {
390 m_client->initial_state == WithdrawnState) // Slit client 390 m_client->initial_state == WithdrawnState) // Slit client
391 return; 391 return;
392 392
393 if (m_client->initial_state == IconicState)
394 m_state.iconic = true;
395
393 m_client->setFluxboxWindow(this); 396 m_client->setFluxboxWindow(this);
394 m_client->setGroupLeftWindow(None); // nothing to the left. 397 m_client->setGroupLeftWindow(None); // nothing to the left.
395 398