actually fix this bug

This commit is contained in:
Pandora 2017-12-08 23:25:20 -05:00
parent 5af48fc97e
commit c3b893ebc9
No known key found for this signature in database
GPG Key ID: 55DB77C2A03E1EF5
1 changed files with 1 additions and 1 deletions

View File

@ -924,7 +924,7 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
break;
}
if (cur_bar_height >= 0 && ((bar_bidirectional && ((cur_bar_height * 2) < bar_base_height))
if (cur_bar_height != 0 && ((bar_bidirectional && ((cur_bar_height * 2) < bar_base_height))
|| (!bar_bidirectional && (cur_bar_height < bar_base_height)))) {
cairo_rectangle(bar_ctx, back_x, back_y, back_width, back_height);
cairo_fill(bar_ctx);