Browse Source

Fixed issue #44

master
Bert Münnich 13 years ago
parent
commit
8ab3cee6a5
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      window.c

+ 2
- 1
window.c View File

@@ -393,7 +393,8 @@ void win_draw(win_t *win) {
if (win == NULL || win->xwin == None)
return;

win_draw_bar(win);
if (win->barh > 0)
win_draw_bar(win);

XSetWindowBackgroundPixmap(win->env.dpy, win->xwin, win->pm);
XClearWindow(win->env.dpy, win->xwin);


Loading…
Cancel
Save