From f0e60d08652d7ae71f682714d772e3211e8e4133 Mon Sep 17 00:00:00 2001 From: Mark Tiefenbruck Date: Tue, 22 Jan 2008 01:34:02 -0800 Subject: fix some issues with window menus --- src/Toolbar.cc | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/Toolbar.cc b/src/Toolbar.cc index 89ec898..2c7bde2 100644 --- a/src/Toolbar.cc +++ b/src/Toolbar.cc @@ -521,10 +521,15 @@ void Toolbar::reconfigure() { void Toolbar::buttonPressEvent(XButtonEvent &be) { + WinClient *old = WindowCmd::client(); WindowCmd::setWindow(0); if (Fluxbox::instance()->keys()->doAction(be.type, be.state, be.button, - Keys::ON_TOOLBAR, be.time)) + Keys::ON_TOOLBAR, be.time)) { + WindowCmd::setClient(old); return; + } + WindowCmd::setClient(old); + if (be.button == 1) raise(); if (be.button != 3) @@ -549,9 +554,12 @@ void Toolbar::buttonPressEvent(XButtonEvent &be) { } void Toolbar::enterNotifyEvent(XCrossingEvent &ce) { + WinClient *old = WindowCmd::client(); WindowCmd::setWindow(0); Fluxbox::instance()->keys()->doAction(ce.type, ce.state, 0, Keys::ON_TOOLBAR); + WindowCmd::setClient(old); + if (! doAutoHide()) { if (isHidden()) toggleHidden(); @@ -573,8 +581,12 @@ void Toolbar::leaveNotifyEvent(XCrossingEvent &event) { event.y_root > y() && event.y_root <= (int)(y() + height())) return; + WinClient *old = WindowCmd::client(); + WindowCmd::setWindow(0); Fluxbox::instance()->keys()->doAction(event.type, event.state, 0, Keys::ON_TOOLBAR); + WindowCmd::setClient(old); + if (! doAutoHide()) return; -- cgit v0.11.2