From: fred Date: Sun, 24 Mar 2002 19:59:02 +0000 (+0000) Subject: lilypond-0.1.22 X-Git-Tag: release/1.5.59~3810 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8088dc6c44640933d7d9b9c0c091b51e5a395d38;p=lilypond.git lilypond-0.1.22 --- diff --git a/lily/script-def.cc b/lily/script-def.cc index fa067cd3cc..e16eed4c09 100644 --- a/lily/script-def.cc +++ b/lily/script-def.cc @@ -75,8 +75,8 @@ Atom Script_def::get_atom (Paper_def *p , Direction d) const { String preidx_str =""; - if (invertsym_b_&& d < 0) - preidx_str = "-"; + if (invertsym_b_) + preidx_str = (d < 0)? "d" : "u"; return p->lookup_l()->script (preidx_str + symidx_str_); }