]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.22
authorfred <fred>
Sun, 24 Mar 2002 19:59:02 +0000 (19:59 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:59:02 +0000 (19:59 +0000)
lily/script-def.cc

index fa067cd3cc96b9d08d1f1ea72e248b805a13d98a..e16eed4c0933e8df31267914a4709c28ac371831 100644 (file)
@@ -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_);
 }