send config req's to the master too

This commit is contained in:
Dana Jansens 2003-01-07 07:34:11 +00:00
parent 19eb13679d
commit f1ce4e660f

View file

@ -85,6 +85,9 @@ void OtkEventDispatcher::dispatchEvents(void)
// find the actual window! e.xany.window is the parent window // find the actual window! e.xany.window is the parent window
it = _map.find(e.xconfigurerequest.window); it = _map.find(e.xconfigurerequest.window);
if (_master)
_master->handle(e);
if (it != _map.end()) if (it != _map.end())
it->second->handle(e); it->second->handle(e);
else { else {