Copy theme during remote edit.

Fixes: https://launchpad.net/bugs/864822
This commit is contained in:
Tim Bentley 2011-10-02 20:49:29 +01:00
parent 6426d9aac4
commit c5a7127aec
1 changed files with 3 additions and 0 deletions

View File

@ -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)