From: Jim Evins Date: Sat, 15 Nov 2003 13:50:29 +0000 (+0000) Subject: Added "break" in draw_markup_layer between line and circle cases of switch. This... X-Git-Tag: glabels-2_3_0~551 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b96836c5812bd54c4d077cacaa3f57cd8f821af5;p=glabels Added "break" in draw_markup_layer between line and circle cases of switch. This fixes Bug #842705. This is also the 2nd time I have fixed this bug -- I must of neglected to check it in. git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@342 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- diff --git a/glabels2/src/view.c b/glabels2/src/view.c index e521c0e5..2cd4581c 100644 --- a/glabels2/src/view.c +++ b/glabels2/src/view.c @@ -1140,6 +1140,7 @@ draw_markup_layer (glView *view) case GL_TEMPLATE_MARKUP_LINE: draw_markup_line (view, (glTemplateMarkupLine *)markup); + break; case GL_TEMPLATE_MARKUP_CIRCLE: draw_markup_circle (view, (glTemplateMarkupCircle *)markup);