diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Window.cc | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.15: | 2 | Changes for 0.9.15: |
3 | * Click of LeftMouseButton should always setInputFocus (thanx Eike von Seggern) | ||
4 | solves problem with focus changes via key and then not beeing | ||
5 | able to focus the window underneath the mouse with a simple | ||
6 | click in MouseFocus mode | ||
7 | src/Window.cc | ||
3 | * Use fbsetroot in Default-Styles (Mathias) | 8 | * Use fbsetroot in Default-Styles (Mathias) |
4 | data/styles/* | 9 | data/styles/* |
5 | ------------------------------------------------------------- | 10 | ------------------------------------------------------------- |
diff --git a/src/Window.cc b/src/Window.cc index 35794ef..9485a29 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) && (! screen().isMouseFocus())) { //check focus | 2650 | if ((! focused) ) { |
2651 | setInputFocus(); | 2651 | setInputFocus(); |
2652 | } | 2652 | } |
2653 | 2653 | ||