From c5a7127aec29e1a86530efaf0e41ff16be65d2ba Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sun, 2 Oct 2011 20:49:29 +0100 Subject: [PATCH] Copy theme during remote edit. Fixes: https://launchpad.net/bugs/864822 --- openlp/core/lib/serviceitem.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index 3170e0a93..941f54897 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -364,6 +364,9 @@ class ServiceItem(object): """ self._uuid = other._uuid self.notes = other.notes + # copy theme over if present. Assumes overridden + if other.theme is not None: + self.theme = other.theme if self.is_capable(ItemCapabilities.HasBackgroundAudio): log.debug(self.background_audio)