commit c3b893ebc9a407a9633b8e8642a65a0d587a6ab8 parent 5af48fc97e3350c4ee5b160d8501d2c850177411 Author: Pandora <Pandora@techfo.xyz> Date: Fri, 8 Dec 2017 23:25:20 -0500 actually fix this bug Diffstat:
| M | unlock_indicator.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unlock_indicator.c b/unlock_indicator.c @@ -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);
