Skip to content
Snippets Groups Projects
Commit 6f72af21 authored by Cédric Roux's avatar Cédric Roux
Browse files

make tick larger in ticktime.c

3 pixels wide look better than 1
parent c27e69f6
No related branches found
No related tags found
No related merge requests found
......@@ -147,7 +147,8 @@ static void *ticktime_thread(void *_this)
continue;
p = &this->p[l];
/* 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);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment