From c73a57afd3f02602f7007353d97a9acae0e135f9 Mon Sep 17 00:00:00 2001 From: Martin Barrett Date: Fri, 29 Jun 2012 00:17:17 +0100 Subject: [PATCH] fixed bug #986688 'PrintService copy not separating verses Fixes: https://launchpad.net/bugs/986688 --- openlp/core/ui/printserviceform.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index 674aab1b9..ec0993a50 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -60,7 +60,7 @@ http://doc.trolltech.com/4.7/richtext-html-subset.html#css-properties } .itemText { - margin-top: 10px; + margin-top: 5px; } .itemFooter { @@ -218,6 +218,7 @@ class PrintServiceForm(QtGui.QDialog, Ui_PrintServiceDialog): if not verse_def or verse_def != slide[u'verseTag']: text_div = self._addElement(u'div', parent=div, classId=u'itemText') + self._addElement(u'br', parent=text_div) else: self._addElement(u'br', parent=text_div) self._addElement(u'span', slide[u'html'], text_div)