From d2d129deb3500598665660135c8f95ad0f4d1919 Mon Sep 17 00:00:00 2001 From: Martin Barrett Date: Sat, 30 Jun 2012 19:51:53 +0100 Subject: [PATCH] fixes bug #986699: Print Service not separating verses --- openlp/core/ui/printserviceform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index a6c32cbc1..78a84f3fb 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -331,7 +331,7 @@ class PrintServiceForm(QtGui.QDialog, Ui_PrintServiceDialog): """ self.update_song_usage() cursor = QtGui.QTextCursor(self.document) - cursor.select(3) + cursor.select(QtGui.QTextCursor.Document) clipboard_text = cursor.selectedText() # We now have the unprocessed unicode service text in the cursor # So we replace u2028 with \n and u2029 with \n\n and a few others