diff options
author | mathias <mathias> | 2005-09-16 15:20:26 (GMT) |
---|---|---|
committer | mathias <mathias> | 2005-09-16 15:20:26 (GMT) |
commit | 15c21ed267ae56087cfb1d5dd41c20012727d29d (patch) | |
tree | 7067f19c5389f10520815485841e87c820a1dd4a /src | |
parent | 3a0d8391f84b7c5ebc28b75ab16e1092c1d06e43 (diff) | |
download | fluxbox_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.cc | 2 |
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 | ||