Remove height, so fix actually works

This commit is contained in:
Jonathan Corwin 2010-09-09 08:30:14 +01:00
parent 58dc96b124
commit dd2136774b
1 changed files with 1 additions and 2 deletions

View File

@ -514,7 +514,6 @@ def build_footer_css(item, height):
left: %spx; left: %spx;
bottom: %spx; bottom: %spx;
width: %spx; width: %spx;
height: %spx;
font-family: %s; font-family: %s;
font-size: %spt; font-size: %spt;
color: %s; color: %s;
@ -526,7 +525,7 @@ def build_footer_css(item, height):
return u'' return u''
bottom = height - int(item.footer.y()) - int(item.footer.height()) bottom = height - int(item.footer.y()) - int(item.footer.height())
lyrics_html = style % (item.footer.x(), bottom, lyrics_html = style % (item.footer.x(), bottom,
item.footer.width(), item.footer.height(), theme.font_footer_name, item.footer.width(), theme.font_footer_name,
theme.font_footer_proportion, theme.font_footer_color) theme.font_footer_proportion, theme.font_footer_color)
return lyrics_html return lyrics_html