]> git.donarmstrong.com Git - lilypond.git/commitdiff
* lily/separation-item.cc: add padding property.
authorhanwen <hanwen>
Sat, 19 Jul 2003 10:00:21 +0000 (10:00 +0000)
committerhanwen <hanwen>
Sat, 19 Jul 2003 10:00:21 +0000 (10:00 +0000)
* input/test/*.ly: various fixes, remove solo-a2.ly

ChangeLog
input/test/solo-a2.ly [deleted file]
lily/separation-item.cc

index 0e7422cf20f81bb7097b2dce10df69d5f7e76519..4f301be3e671de8b4bd6b4186bdb1016afbe9d39 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2003-07-19  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * lily/separation-item.cc: add padding property.
+
+       * input/test/*.ly: various fixes, remove solo-a2.ly
+
        * scm/new-markup.scm (brew-new-markup-molecule): arg order
        bugfix. Fixes old-style markup compatibility.
 
diff --git a/input/test/solo-a2.ly b/input/test/solo-a2.ly
deleted file mode 100644 (file)
index cb3a488..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-\version "1.7.18"
-%rename to partcobine- something.  -gp
-
-\header {texidoc = "@cindex Partcombine something. "
-
-% FIXMEsoon.
-}
-
-\score{
-       \context Staff = one <
-               \context Voice=one { \skip 1 }
-               \context Voice=two { \skip 1 }
-
-               \context Voice=one \partcombine Voice
-                       \context Thread=one \notes\relative c''
-                               {
-                                       e \property Voice.soloADue = ##f e
-                               }
-                       \context Thread=two \notes\relative c''
-                               {
-                                       e \property Voice.soloADue = ##f e
-                               }
-               >
-       \paper{
-%              linewidth = 100.\mm
-               raggedright=##t
-       }
-}
-
index 0b8776eeadcc6a67055f2fd74e413e9d05f21a0c..5255b65c028a1db675347246dc4d72aa8794a908 100644 (file)
@@ -122,12 +122,9 @@ Separation_item::width (Grob *me)
     w[LEFT] -= gh_scm2double (pad)/2;    
   }
 
-
   me->set_grob_property ("X-extent", ly_interval2scm (w));
   
-  
   return w;
- // add this->offset_ ? this-> relative_coordinate ()? 
 }
 
 
@@ -137,7 +134,6 @@ Separation_item::width (Grob *me)
 ADD_INTERFACE (Separation_item,"separation-item-interface",
   "Item that computes widths to generate spacing rods.\n"
 "\n"
-"Calc dimensions for the Separating_group_spanner; this has to be "
-"an item to get dependencies correct.  It can't be an grob_group "
-"since these usually are in a different X_group ",
-  "X-extent conditional-elements elements");
+"Calculate dimensions for the Separating_group_spanner; this has to be "
+"an item to get dependencies correct.  "
+  "padding X-extent conditional-elements elements");