From a8af8a8d18ab30ab8884917817e672423eb0a00f Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 4 Aug 2019 08:53:56 +0100 Subject: [PATCH] fix custom copy --- openlp/plugins/custom/lib/mediaitem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 3db190e8d..768bef391 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -349,7 +349,7 @@ class CustomMediaItem(MediaManagerItem): custom.credits = '' custom_xml = CustomXMLBuilder() for (idx, slide) in enumerate(item.slides): - custom_xml.add_verse_to_lyrics('custom', str(idx + 1), slide['raw_slide']) + custom_xml.add_verse_to_lyrics('custom', str(idx + 1), slide['text']) custom.text = str(custom_xml.extract_xml(), 'utf-8') self.plugin.db_manager.save_object(custom) self.on_search_text_button_clicked()