all repos — openbox @ bbdfd8f1d6b46954f5611f245ee2c68aa2fe91ce

openbox fork - make it a bit more like ryudo

scratch that
Dana Jansens danakj@orodu.net
commit

bbdfd8f1d6b46954f5611f245ee2c68aa2fe91ce

parent

52b83a9dbb2b7823d5f78781f5948dfd8d77d50b

1 files changed, 0 insertions(+), 17 deletions(-)

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

@@ -52,23 +52,6 @@ handler = _fallback;

if (handler) handler->handle(e); - else { - // some events have to be handled anyways! - if (e.type == ConfigureRequest) { - XWindowChanges xwc; - - xwc.x = e.xconfigurerequest.x; - xwc.y = e.xconfigurerequest.y; - xwc.width = e.xconfigurerequest.width; - xwc.height = e.xconfigurerequest.height; - xwc.border_width = e.xconfigurerequest.border_width; - xwc.sibling = e.xconfigurerequest.above; - xwc.stack_mode = e.xconfigurerequest.detail; - - XConfigureWindow(OBDisplay::display, e.xconfigurerequest.window, - e.xconfigurerequest.value_mask, &xwc); - } - } } }