all repos — openbox @ 5a71f5b094b5f7b9f56f0ad4bf28ab978a42af63

openbox fork - make it a bit more like ryudo

only do shit if the size changed
Dana Jansens danakj@orodu.net
commit

5a71f5b094b5f7b9f56f0ad4bf28ab978a42af63

parent

0856b11de843db30b5053c8cb7d9c84eae262852

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

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

@@ -74,7 +74,8 @@ }

bool OtkButton::configure(const XConfigureEvent &e) { - _dirty = true; + if (!(e.width == width() && e.height == height())) + _dirty = true; return OtkFocusWidget::configure(e); }