reverted last change .. the problem of the user must be handled differently... never commit after 3 hours of sleep again.
This commit is contained in:
parent
3a0d8391f8
commit
15c21ed267
2 changed files with 1 additions and 6 deletions
|
@ -1,10 +1,5 @@
|
||||||
(Format: Year/Month/Day)
|
(Format: Year/Month/Day)
|
||||||
Changes for 0.9.15:
|
Changes for 0.9.15:
|
||||||
* Click of LeftMouseButton should always setInputFocus (thanx Eike von Seggern)
|
|
||||||
solves problem with focus changes via key and then not beeing
|
|
||||||
able to focus the window underneath the mouse with a simple
|
|
||||||
click in MouseFocus mode
|
|
||||||
src/Window.cc
|
|
||||||
* Use fbsetroot in Default-Styles (Mathias)
|
* Use fbsetroot in Default-Styles (Mathias)
|
||||||
data/styles/*
|
data/styles/*
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
|
|
|
@ -2647,7 +2647,7 @@ void FluxboxWindow::buttonPressEvent(XButtonEvent &be) {
|
||||||
frame().buttonPressEvent(be);
|
frame().buttonPressEvent(be);
|
||||||
|
|
||||||
if (be.button == 1 || (be.button == 3 && be.state == Mod1Mask)) {
|
if (be.button == 1 || (be.button == 3 && be.state == Mod1Mask)) {
|
||||||
if ((! focused) ) {
|
if ((! focused) && (! screen().isMouseFocus())) { //check focus
|
||||||
setInputFocus();
|
setInputFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue