From: fred Date: Tue, 26 Mar 2002 21:45:37 +0000 (+0000) Subject: lilypond-1.1.16 X-Git-Tag: release/1.5.59~2663 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bd3a4c4fd949c4969ba53c45d1705394e10dd367;p=lilypond.git lilypond-1.1.16 --- diff --git a/lily/text-item.cc b/lily/text-item.cc index 1cc4105f69..04f6ec6997 100644 --- a/lily/text-item.cc +++ b/lily/text-item.cc @@ -70,12 +70,17 @@ Text_item::brew_molecule_p () const if (!fat_b_) a.dim_[X_AXIS] = Interval (0,0); Molecule* mol_p = new Molecule (a); - +#if 0 if (dir_<0) // should do something better anyway. mol_p->translate_axis (mol_p->extent ().y ().left , Y_AXIS); +#endif + mol_p->translate_axis (coordinate_offset_f_, Y_AXIS); + +#if 0 // fine for one lyric, urg for lyric chord mol_p->translate_axis (a.dim_.y ().length (), Y_AXIS); +#endif return mol_p; }