diff options
author | rathnor <rathnor> | 2003-05-08 15:14:50 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-05-08 15:14:50 (GMT) |
commit | e14d4c8115f07d742a0cfdbfabb79497481459b0 (patch) | |
tree | 5193b6aa2998fe3bd4b08b10126354a9b483fa76 | |
parent | dc8fcca4e4c79a0398b749d4b70c539823115cbd (diff) | |
download | fluxbox-e14d4c8115f07d742a0cfdbfabb79497481459b0.zip fluxbox-e14d4c8115f07d742a0cfdbfabb79497481459b0.tar.bz2 |
fix some missing enternotifies
-rw-r--r-- | src/Window.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc index c3cbfa5..e7a7496 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.164 2003/05/08 15:06:59 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.165 2003/05/08 15:14:50 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -552,7 +552,8 @@ void FluxboxWindow::attachClient(WinClient &client) { | |||
552 | btn->show(); | 552 | btn->show(); |
553 | // we need motion notify so we mask it | 553 | // we need motion notify so we mask it |
554 | btn->window().setEventMask(ExposureMask | ButtonPressMask | | 554 | btn->window().setEventMask(ExposureMask | ButtonPressMask | |
555 | ButtonReleaseMask | ButtonMotionMask | EnterWindowMask); | 555 | ButtonReleaseMask | ButtonMotionMask | |
556 | EnterWindowMask); | ||
556 | 557 | ||
557 | 558 | ||
558 | FbTk::RefCount<FbTk::Command> | 559 | FbTk::RefCount<FbTk::Command> |
@@ -580,7 +581,8 @@ void FluxboxWindow::attachClient(WinClient &client) { | |||
580 | FbTk::EventManager &evm = *FbTk::EventManager::instance(); | 581 | FbTk::EventManager &evm = *FbTk::EventManager::instance(); |
581 | // we need motion notify so we mask it | 582 | // we need motion notify so we mask it |
582 | btn->window().setEventMask(ExposureMask | ButtonPressMask | | 583 | btn->window().setEventMask(ExposureMask | ButtonPressMask | |
583 | ButtonReleaseMask | ButtonMotionMask); | 584 | ButtonReleaseMask | ButtonMotionMask | |
585 | EnterWindowMask); | ||
584 | 586 | ||
585 | 587 | ||
586 | FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(client)); | 588 | FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(client)); |