Commit 6f72af21 authored by Cedric Roux's avatar Cedric Roux

make tick larger in ticktime.c

3 pixels wide look better than 1
parent c27e69f6
...@@ -147,7 +147,8 @@ static void *ticktime_thread(void *_this) ...@@ -147,7 +147,8 @@ static void *ticktime_thread(void *_this)
continue; continue;
p = &this->p[l]; p = &this->p[l];
/* TODO: only one call */ /* TODO: only one call */
timeline_add_points_silent(this->g, this->w, p->line, p->color, &i, 1); int x[3] = {i==0?i:i-1, i, i==width-1?i:i+1};
timeline_add_points_silent(this->g, this->w, p->line, p->color, x, 3);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment