summaryrefslogtreecommitdiff
path: root/lily/percent-repeat-item.cc
diff options
context:
space:
mode:
authorHan-Wen Nienhuys <hanwen@xs4all.nl>2002-12-07 12:40:50 +0000
committerHan-Wen Nienhuys <hanwen@xs4all.nl>2002-12-07 12:40:50 +0000
commitd7be2ca7f331d94c9525bb0658f7e767c5e39230 (patch)
treec01c03496312ef2063db106ddf8844ad6c5c43fd /lily/percent-repeat-item.cc
parent4e743ebfc914a45b270fe2a93ee5789eae78be26 (diff)
2002-12-06 Han-Wen Nienhuys <hanwen@cs.uu.nl>
* lily/molecule-scheme.cc: move scheme functions to separate file. * lily/font-metric.cc (ly_get_glyph): new function. * scm/new-markup.scm (column-markup): use baseline-skip for columns. (italic-markup, dynamic-markup): new functions (font-markup): new function * lily/molecule.cc (ly_molecule_combined_at_edge): optional padding and minimum
Diffstat (limited to 'lily/percent-repeat-item.cc')
-rw-r--r--lily/percent-repeat-item.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lily/percent-repeat-item.cc b/lily/percent-repeat-item.cc
index 47b2199270..cff3824d82 100644
--- a/lily/percent-repeat-item.cc
+++ b/lily/percent-repeat-item.cc
@@ -44,15 +44,15 @@ Percent_repeat_item_interface::x_percent (Grob *me, int count,
for (int i = count; i--;)
{
- m.add_at_edge (X_AXIS, RIGHT, s, -slash_neg_kern);
+ m.add_at_edge (X_AXIS, RIGHT, s, -slash_neg_kern,0);
}
Molecule d1 = Font_interface::get_default_font (me)->find_by_name ("dots-dot");
Molecule d2 = d1;
d1.translate_axis (0.5, Y_AXIS );
d2.translate_axis (-0.5, Y_AXIS);
- m.add_at_edge (X_AXIS, LEFT, d1, -dot_neg_kern);
- m.add_at_edge (X_AXIS, RIGHT, d2, -dot_neg_kern);
+ m.add_at_edge (X_AXIS, LEFT, d1, -dot_neg_kern,0);
+ m.add_at_edge (X_AXIS, RIGHT, d2, -dot_neg_kern,0);
return m;
}