fixed bug #986688 'PrintService copy not separating verses

Fixes: https://launchpad.net/bugs/986688
This commit is contained in:
Martin Barrett 2012-06-29 00:17:17 +01:00
parent 894c6c2868
commit c73a57afd3
1 changed files with 2 additions and 1 deletions

View File

@ -60,7 +60,7 @@ http://doc.trolltech.com/4.7/richtext-html-subset.html#css-properties
} }
.itemText { .itemText {
margin-top: 10px; margin-top: 5px;
} }
.itemFooter { .itemFooter {
@ -218,6 +218,7 @@ class PrintServiceForm(QtGui.QDialog, Ui_PrintServiceDialog):
if not verse_def or verse_def != slide[u'verseTag']: if not verse_def or verse_def != slide[u'verseTag']:
text_div = self._addElement(u'div', parent=div, text_div = self._addElement(u'div', parent=div,
classId=u'itemText') classId=u'itemText')
self._addElement(u'br', parent=text_div)
else: else:
self._addElement(u'br', parent=text_div) self._addElement(u'br', parent=text_div)
self._addElement(u'span', slide[u'html'], text_div) self._addElement(u'span', slide[u'html'], text_div)