fire the master first

This commit is contained in:
Dana Jansens 2003-01-02 21:51:30 +00:00
parent 14cf42ff07
commit 9ec1f7cdba

View file

@ -160,6 +160,9 @@ void OtkEventDispatcher::dispatch(const XEvent &e) {
OtkEventHandler *handler; OtkEventHandler *handler;
OtkEventMap::iterator it; OtkEventMap::iterator it;
if (_master)
_master->handle(e);
it = _map.find(e.xany.window); it = _map.find(e.xany.window);
if (it != _map.end()) if (it != _map.end())
@ -169,9 +172,6 @@ void OtkEventDispatcher::dispatch(const XEvent &e) {
if (handler) if (handler)
handler->handle(e); handler->handle(e);
if (_master)
_master->handle(e);
} }
OtkEventHandler *OtkEventDispatcher::findHandler(Window win) OtkEventHandler *OtkEventDispatcher::findHandler(Window win)