aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-10-28 02:17:03 (GMT)
committerrathnor <rathnor>2003-10-28 02:17:03 (GMT)
commitf5f979ef374623fffc321300ec7f699acd20e426 (patch)
tree71badb4166aeeecda67a94849940e009a02e045c /src/fluxbox.cc
parent6b9b0e89e4549787077ccbdef67893443c76dc75 (diff)
downloadfluxbox_pavel-f5f979ef374623fffc321300ec7f699acd20e426.zip
fluxbox_pavel-f5f979ef374623fffc321300ec7f699acd20e426.tar.bz2
make client windows only reparented one below toplevel - i.e. not into
clientarea
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r--src/fluxbox.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 50cb292..7b6f0b8 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: fluxbox.cc,v 1.200 2003/10/14 16:23:15 rathnor Exp $ 25// $Id: fluxbox.cc,v 1.201 2003/10/28 02:17:03 rathnor Exp $
26 26
27#include "fluxbox.hh" 27#include "fluxbox.hh"
28 28
@@ -560,11 +560,12 @@ Fluxbox::Fluxbox(int argc, char **argv, const char *dpy_name, const char *rcfile
560 screen->workspaceCountSig().attach(this); 560 screen->workspaceCountSig().attach(this);
561 screen->workspaceNamesSig().attach(this); 561 screen->workspaceNamesSig().attach(this);
562 screen->clientListSig().attach(this); 562 screen->clientListSig().attach(this);
563 563
564 // initiate atomhandler for screen specific stuff 564 // initiate atomhandler for screen specific stuff
565 for (size_t atomh=0; atomh<m_atomhandler.size(); ++atomh) { 565 for (size_t atomh=0; atomh<m_atomhandler.size(); ++atomh) {
566 m_atomhandler[atomh]->initForScreen(*screen); 566 m_atomhandler[atomh]->initForScreen(*screen);
567 } 567 }
568 revertFocus(*screen, false); // make sure focus style is correct
568 569
569 } 570 }
570 m_keyscreen = m_mousescreen = m_screen_list.front(); 571 m_keyscreen = m_mousescreen = m_screen_list.front();