Please read the instructions at http://lilypond.org/web/devel/participating/bugs on how to report LilyPond bugs. In particular, note that bug reports should be sent to the bug-lilypond
mailing list and not be inserted directly into the bug tracker.

If your email to the mailing list seems to have been forgotten, please send a reminder.

  /Mats

[EMAIL PROTECTED] wrote:
Issue 614: OttavaBracket left edge height not working
http://code.google.com/p/lilypond/issues/detail?id=614

New issue report by rowlesmr:
What steps will reproduce the problem?
http://lists.gnu.org/archive/html/lilypond-user/2008-04/msg00132.html

\version "2.11.43"
\relative c''
{
  {
     \set Staff.ottavation = #""
     %left edge doesn't work
     \override Staff.OttavaBracket #'edge-height = #'(1.2 . 1.2)
     c4
     #(set-octavation 0)
     c4
  }
}


What is the expected output? What do you see instead?
Expected output is a left edge of the bracket that is identical to that on
the right. I currently see the left side of the bracket ending with no
vertical end.


What version of LilyPond are you using? On what operating system?
2.11.43 on Linux


Please provide any additional information below.
As pointed out by Neil Puttock, ottava-bracket.cc sets the left edge height
to zero _after_ reading in the edge-height.

 Drul_array<Real> edge_height =
            robust_scm2interval (me->get_property ("edge-height"),
                                 Interval (1.0, 1.0));

 edge_height[LEFT] = 0.0; //this resets the edge height!
 edge_height[RIGHT] *= -get_grob_direction (me);
 if (broken[RIGHT])
   edge_height[RIGHT] = 0.0;





Issue attributes:
    Status: New
    Owner: ----
    Labels: Type-Defect Priority-Medium


--
=============================================
        Mats Bengtsson
        Signal Processing
        School of Electrical Engineering
        Royal Institute of Technology (KTH)
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
       Fax:   (+46) 8 790 7260
        Email: [EMAIL PROTECTED]
        WWW: http://www.s3.kth.se/~mabe
=============================================



_______________________________________________
bug-lilypond mailing list
bug-lilypond@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to