all repos — openbox @ 236f68056d5296087d39de8031c3a71524c1e830

openbox fork - make it a bit more like ryudo

fix booge bug that makes widgets not change their background when changing from a texture to a color when a color had been set previously
Dana Jansens danakj@orodu.net
commit

236f68056d5296087d39de8031c3a71524c1e830

parent

2b2f81b93c89c2a2d6abc3b12dee66b8e2a0452d

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

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

@@ -248,13 +248,12 @@ void OtkWidget::render(void)

{ if (!_texture) return; - printf("rendering %lx\n", _texture); - _bg_pixmap = _texture->render(_rect.width(), _rect.height(), _bg_pixmap); - if (_bg_pixmap) + if (_bg_pixmap) { XSetWindowBackgroundPixmap(otk::OBDisplay::display, _window, _bg_pixmap); - else { + _bg_pixel = None; + } else { unsigned int pix = _texture->color().pixel(); if (pix != _bg_pixel) { _bg_pixel = pix;

@@ -388,7 +387,6 @@

void OtkWidget::update(void) { if (_dirty) { - printf("widget dirty, redrawing\n"); adjust(); render(); XClearWindow(OBDisplay::display, _window);