Don't draw height that's <0

This commit is contained in:
Rio6 2021-01-24 14:24:25 -05:00
parent 0075b07aac
commit 663b34e4e0
1 changed files with 3 additions and 1 deletions

View File

@ -367,7 +367,9 @@ static void draw_bar(cairo_t *ctx, double bar_offset, double screen_x, double sc
for (int i = 0; i < bar_count; ++i) {
double bar_height = bar_heights[i];
draw_single_bar(ctx, screen_pos + i * bar_width, bar_offset, bar_width, bar_height);
if (bar_height > 0) {
draw_single_bar(ctx, screen_pos + i * bar_width, bar_offset, bar_width, bar_height);
}
}
for (int i = 0; i < bar_count; ++i) {