all repos — openbox @ 36ed114f49544eb17bacf4c359d67bc5d9324b13

openbox fork - make it a bit more like ryudo

add a constructor for strut that takes margin sizes
Dana Jansens danakj@orodu.net
commit

36ed114f49544eb17bacf4c359d67bc5d9324b13

parent

cd91abfd7cb1e48acae946717e835bc700a8bb85

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

jump to
M otk/strut.hhotk/strut.hh

@@ -21,6 +21,8 @@ unsigned int right;

//! Constructs a new Strut with no margins Strut(void): top(0), bottom(0), left(0), right(0) {} + //! Constructs a new Strut with margins + Strut(int l, int t, int r, int b): top(t), bottom(b), left(l), right(r) {} }; }