diff options
Diffstat (limited to 'lily/text-item.cc')
-rw-r--r-- | lily/text-item.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lily/text-item.cc b/lily/text-item.cc index 4701f2b109..8d62ea7289 100644 --- a/lily/text-item.cc +++ b/lily/text-item.cc @@ -51,8 +51,8 @@ Text_item::brew_molecule_p() const Molecule* mol_p = new Molecule (a); if (dir_<0) // should do something better anyway. - mol_p->translate (-mol_p->extent().y ().left , Y_AXIS); - mol_p->translate (pos_i_ * paper()->internote_f (), Y_AXIS); + mol_p->translate_axis (-mol_p->extent().y ().left , Y_AXIS); + mol_p->translate_axis (pos_i_ * paper()->internote_f (), Y_AXIS); return mol_p; } |