From 7a3ab8318d97610f75541aad2e6286b204769c87 Mon Sep 17 00:00:00 2001 From: Carl Sorensen Date: Sat, 26 Jun 2010 08:21:43 -0600 Subject: [PATCH] Fix 1153 -- close measure-grouping triangle --- lily/lookup.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/lily/lookup.cc b/lily/lookup.cc index 2d7ae3e89d..207dd06bf4 100644 --- a/lily/lookup.cc +++ b/lily/lookup.cc @@ -534,6 +534,7 @@ Lookup::triangle (Interval iv, Real thick, Real protrude) points.push_back (Offset (iv[LEFT], 0)); points.push_back (Offset (iv[RIGHT], 0)); points.push_back (Offset (iv.center (), protrude)); + points.push_back (Offset (iv[LEFT], 0)); // close triangle return points_to_line_stencil (thick, points); -- 2.39.5