all repos — fluxbox @ e14d4c8115f07d742a0cfdbfabb79497481459b0

custom fork of the fluxbox windowmanager

fix some missing enternotifies
rathnor rathnor
commit

e14d4c8115f07d742a0cfdbfabb79497481459b0

parent

dc8fcca4e4c79a0398b749d4b70c539823115cbd

1 files changed, 5 insertions(+), 3 deletions(-)

jump to
M src/Window.ccsrc/Window.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.cc,v 1.164 2003/05/08 15:06:59 rathnor Exp $ +// $Id: Window.cc,v 1.165 2003/05/08 15:14:50 rathnor Exp $ #include "Window.hh"

@@ -552,7 +552,8 @@ m_frame.addLabelButton(*btn);

btn->show(); // we need motion notify so we mask it btn->window().setEventMask(ExposureMask | ButtonPressMask | - ButtonReleaseMask | ButtonMotionMask | EnterWindowMask); + ButtonReleaseMask | ButtonMotionMask | + EnterWindowMask); FbTk::RefCount<FbTk::Command>

@@ -580,7 +581,8 @@ btn->show();

FbTk::EventManager &evm = *FbTk::EventManager::instance(); // we need motion notify so we mask it btn->window().setEventMask(ExposureMask | ButtonPressMask | - ButtonReleaseMask | ButtonMotionMask); + ButtonReleaseMask | ButtonMotionMask | + EnterWindowMask); FbTk::RefCount<FbTk::Command> set_client_cmd(new SetClientCmd(client));