diff options
| -rw-r--r-- | otk/eventdispatcher.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/otk/eventdispatcher.cc b/otk/eventdispatcher.cc index 760f86a4..22ad73c1 100644 --- a/otk/eventdispatcher.cc +++ b/otk/eventdispatcher.cc @@ -85,6 +85,9 @@ void OtkEventDispatcher::dispatchEvents(void) // find the actual window! e.xany.window is the parent window it = _map.find(e.xconfigurerequest.window); + if (_master) + _master->handle(e); + if (it != _map.end()) it->second->handle(e); else { |
