all repos — openbox @ 02b9d474f1dad0fcb15f4832a582d99e51ee64b6

openbox fork - make it a bit more like ryudo

dont let maximizing occur if the window cant move or resize
Dana Jansens danakj@orodu.net
commit

02b9d474f1dad0fcb15f4832a582d99e51ee64b6

parent

92bc846ce16fe5fb63c2b4b38a780489e2979b11

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

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

@@ -300,6 +300,10 @@ // _functions &= ~Func_Close;

} } + // can't maximize without moving/resizing + if (!((_functions & Func_Move) && (_functions & Func_Resize))) + _functions &= ~Func_Maximize; + // finally, user specified disabled decorations are applied to subtract // decorations if (_disabled_decorations & Decor_Titlebar)