From f1ce4e660fe96816a699a89746a6105eca09babd Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 7 Jan 2003 07:34:11 +0000 Subject: [PATCH] send config req's to the master too --- otk/eventdispatcher.cc | 3 +++ 1 file changed, 3 insertions(+) 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 { -- 2.39.2