all repos — openbox @ 150c28620e1f14b7249038068bccca9563526377

openbox fork - make it a bit more like ryudo

build fixes for evetdispatcher
Dana Jansens danakj@orodu.net
commit

150c28620e1f14b7249038068bccca9563526377

parent

6935f346b434ba5dea347024f2095069c100b97b

2 files changed, 3 insertions(+), 2 deletions(-)

jump to
M otk/eventdispatcher.ccotk/eventdispatcher.cc

@@ -123,8 +123,8 @@

if (handler) handler->handle(e); - if (master) - master->handle(e); + if (_master) + _master->handle(e); } OtkEventHandler *OtkEventDispatcher::findHandler(Window win)
M otk/eventdispatcher.hhotk/eventdispatcher.hh

@@ -36,6 +36,7 @@ private:

OtkEventMap _map; OtkEventHandler *_fallback; OtkEventHandler *_master; + Window _focus; XEvent _focus_e; //! The time at which the last XEvent with a time was received