~wgrant/openlp/openlyrics_test

« back to all changes in this revision

Viewing changes to openlp/core/lib/serviceitem.py

  • Committer: Martin Zibricky
  • Date: 2011-10-06 16:16:29 UTC
  • mfrom: (1186.2.584 openlp)
  • Revision ID: mzibr.public@gmail.com-20111006161629-17tyvvq60h3h15dd
[merge] r1770, rename testing dir to tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
364
364
        """
365
365
        self._uuid = other._uuid
366
366
        self.notes = other.notes
 
367
        # Copy theme over if present.
 
368
        if other.theme is not None:
 
369
            self.theme = other.theme
 
370
            self._new_item()
 
371
        self.render()
367
372
        if self.is_capable(ItemCapabilities.HasBackgroundAudio):
368
373
            log.debug(self.background_audio)
369
374