aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authormarkt <markt>2007-04-01 21:42:01 (GMT)
committermarkt <markt>2007-04-01 21:42:01 (GMT)
commit48f761f9816f0f11e05dcc4e8f5ac506328e1683 (patch)
treecd93a828fb6db8eb1eb69db00be7ad37b97bf96a /src/Screen.cc
parentc883e477c547b14aae029b5376c1145a8439fcea (diff)
downloadfluxbox-48f761f9816f0f11e05dcc4e8f5ac506328e1683.zip
fluxbox-48f761f9816f0f11e05dcc4e8f5ac506328e1683.tar.bz2
fixed problem with creating windows in iconic state
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 7af00a7..9612a04 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -697,15 +697,9 @@ void BScreen::initWindows() {
697 continue; 697 continue;
698 } 698 }
699 699
700 if (attrib.map_state != IsUnmapped) { 700 if (attrib.map_state != IsUnmapped)
701 FluxboxWindow *win = createWindow(children[i]); 701 createWindow(children[i]);
702 702
703 if (win) {
704 XMapRequestEvent mre;
705 mre.window = children[i];
706 win->mapRequestEvent(mre);
707 }
708 }
709 } 703 }
710 children[i] = None; // we dont need this anymore, since we already created a window for it 704 children[i] = None; // we dont need this anymore, since we already created a window for it
711 } 705 }