aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormathias <mathias>2005-09-16 15:20:26 (GMT)
committermathias <mathias>2005-09-16 15:20:26 (GMT)
commit15c21ed267ae56087cfb1d5dd41c20012727d29d (patch)
tree7067f19c5389f10520815485841e87c820a1dd4a /src
parent3a0d8391f84b7c5ebc28b75ab16e1092c1d06e43 (diff)
downloadfluxbox_pavel-15c21ed267ae56087cfb1d5dd41c20012727d29d.zip
fluxbox_pavel-15c21ed267ae56087cfb1d5dd41c20012727d29d.tar.bz2
reverted last change .. the problem of the user must be handled differently... never commit after 3 hours of sleep again.
Diffstat (limited to 'src')
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 9485a29..35794ef 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -2647,7 +2647,7 @@ void FluxboxWindow::buttonPressEvent(XButtonEvent &be) {
2647 frame().buttonPressEvent(be); 2647 frame().buttonPressEvent(be);
2648 2648
2649 if (be.button == 1 || (be.button == 3 && be.state == Mod1Mask)) { 2649 if (be.button == 1 || (be.button == 3 && be.state == Mod1Mask)) {
2650 if ((! focused) ) { 2650 if ((! focused) && (! screen().isMouseFocus())) { //check focus
2651 setInputFocus(); 2651 setInputFocus();
2652 } 2652 }
2653 2653