visualizer-ticks: remove extraneous assertion

This isn't exactly true anymore, so we need to remove it now
that we can have more interesting time spans.
This commit is contained in:
Christian Hergert
2016-09-28 14:13:15 -07:00
parent 7831b767d0
commit 4d48f98f6d

View File

@ -82,8 +82,6 @@ draw_ticks (SpVisualizerTicks *self,
space = (gdouble)area->width / (gdouble)timespan * (gdouble)tick_sizing[ticks].span;
half = tick_sizing[ticks].width / 2.0;
g_assert (space >= MIN_TICK_DISTANCE);
for (gdouble x = 0; x < area->width; x += space)
{
cairo_move_to (cr, (gint)x - .5 - (gint)half, 0);