aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarkt <markt>2007-03-25 17:30:57 (GMT)
committermarkt <markt>2007-03-25 17:30:57 (GMT)
commit58e280952a47fc3fb77b4659a21cc4ce6a73066e (patch)
treee913b823ea6de8d7766df30f1045236f92828a50
parente69fd0d88f9afc553769aad5ae2ec98112f8406a (diff)
downloadfluxbox-58e280952a47fc3fb77b4659a21cc4ce6a73066e.zip
fluxbox-58e280952a47fc3fb77b4659a21cc4ce6a73066e.tar.bz2
little fix for clients in tabbed windows raising themselves
-rw-r--r--src/Window.cc2
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