diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-07 07:34:11 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-07 07:34:11 +0000 |
| commit | f1ce4e660fe96816a699a89746a6105eca09babd (patch) | |
| tree | 67a4d52ee4dbde7a7df71ca7f751c51feb3caa3a /otk | |
| parent | 19eb13679dff7cb492f09b848e34b1fe6c081cbc (diff) | |
send config req's to the master too
Diffstat (limited to 'otk')
| -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 { |
