Fix a silly error when redrawing the background. Fixes #108 and #82

This commit is contained in:
LemonBoy 2015-03-03 11:29:35 +01:00
parent 75dbf3397e
commit fe4ff881dd
1 changed files with 5 additions and 5 deletions

2
bar.c
View File

@ -206,7 +206,7 @@ draw_char (monitor_t *mon, font_t *cur_font, int x, int align, uint16_t ch)
}
// Draw the background first
fill_rect(mon->pixmap, gc[GC_CLEAR], x, by, ch_width, bh);
fill_rect(mon->pixmap, gc[GC_CLEAR], x, 0, ch_width, bh);
// xcb accepts string in UCS-2 BE, so swap
ch = (ch >> 8) | (ch << 8);