all repos — openbox @ 496c185f997fddf052c230b156f551da770e78ca

openbox fork - make it a bit more like ryudo

dont shade without a titlebar.
more correct configurenotifies
Dana Jansens danakj@orodu.net
commit

496c185f997fddf052c230b156f551da770e78ca

parent

1c61a333db13c70c679b0b4bbb4f1b7cdb26cb8f

1 files changed, 15 insertions(+), 3 deletions(-)

jump to
M src/client.ccsrc/client.cc

@@ -309,6 +309,10 @@ _decorations &= ~Decor_AllDesktops;

if (_disabled_decorations & Decor_Close) _decorations &= ~Decor_Close; + // You can't shade without a titlebar + if (!(_decorations & Decor_Titlebar)) + _functions &= ~Func_Shade; + changeAllowedActions(); if (frame) {

@@ -1142,15 +1146,23 @@ event.type = ConfigureNotify;

event.xconfigure.display = **otk::display; event.xconfigure.event = _window; event.xconfigure.window = _window; - event.xconfigure.x = x; - event.xconfigure.y = y; + + // root window coords with border in mind + event.xconfigure.x = x - _border_width + frame->size().left; + event.xconfigure.y = y - _border_width + frame->size().top; + event.xconfigure.width = _area.width(); event.xconfigure.height = _area.height(); event.xconfigure.border_width = _border_width; - event.xconfigure.above = frame->window(); + event.xconfigure.above = frame->plate(); event.xconfigure.override_redirect = False; XSendEvent(event.xconfigure.display, event.xconfigure.window, False, StructureNotifyMask, &event); +#if 0//def DEBUG + printf("Sent synthetic ConfigureNotify %d,%d %d,%d to 0x%lx\n", + event.xconfigure.x, event.xconfigure.y, event.xconfigure.width, + event.xconfigure.height, event.xconfigure.window); +#endif } }