diff options
author | markt <markt> | 2007-03-25 17:30:57 (GMT) |
---|---|---|
committer | markt <markt> | 2007-03-25 17:30:57 (GMT) |
commit | 58e280952a47fc3fb77b4659a21cc4ce6a73066e (patch) | |
tree | e913b823ea6de8d7766df30f1045236f92828a50 | |
parent | e69fd0d88f9afc553769aad5ae2ec98112f8406a (diff) | |
download | fluxbox-58e280952a47fc3fb77b4659a21cc4ce6a73066e.zip fluxbox-58e280952a47fc3fb77b4659a21cc4ce6a73066e.tar.bz2 |
little fix for clients in tabbed windows raising themselves
-rw-r--r-- | src/Window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc index 560bf96..9790220 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -2585,7 +2585,7 @@ void FluxboxWindow::configureRequestEvent(XConfigureRequestEvent &cr) { | |||
2585 | case Above: | 2585 | case Above: |
2586 | case TopIf: | 2586 | case TopIf: |
2587 | default: | 2587 | default: |
2588 | setCurrentClient(*client, false); | 2588 | setCurrentClient(*client, m_focused); |
2589 | raise(); | 2589 | raise(); |
2590 | break; | 2590 | break; |
2591 | 2591 | ||