From: Dana Jansens Date: Tue, 7 Jan 2003 07:34:11 +0000 (+0000) Subject: send config req's to the master too X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=f1ce4e660fe96816a699a89746a6105eca09babd;p=chaz%2Fopenbox send config req's to the master too --- 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 {