all repos — openbox @ 5be1363981349a23637da6a6fc718ae48a7a6667

openbox fork - make it a bit more like ryudo

better fix for configure
Dana Jansens danakj@orodu.net
commit

5be1363981349a23637da6a6fc718ae48a7a6667

parent

e8b74211e7dcf08701809f657afa08df55dec218

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

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

@@ -414,9 +414,10 @@ if (_ignore_config) {

_ignore_config--; } else { std::cout << "configure\n"; - if (!(e.width == _rect.width() && e.height == _rect.height())) + if (!(e.width == _rect.width() && e.height == _rect.height())) { _dirty = true; - _rect.setRect(_rect.x(), _rect.y(), e.width, e.height); + _rect.setSize(e.width, e.height); + } update(); } return true;