← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~smpettit/openlp/preview-edit-custom into lp:openlp

 

Stevan Pettit has proposed merging lp:~smpettit/openlp/preview-edit-custom into lp:openlp.

Requested reviews:
  Raoul Snyman (raoul-snyman)
  Jonathan Corwin (j-corwin)
  Tim Bentley (trb143)

For more details, see:
https://code.launchpad.net/~smpettit/openlp/preview-edit-custom/+merge/65007

Fixed problem with preview edit button not working for custom slides.

This problem first occurred when the "custom" plugin was renamed to "custom slide"

Changed name of custom plugin to 'Custom_Slide'
Replaced the ' ' in the signal receiver to a '_',  it's now 'custom_slide_edit'

Changed Custom plugin name back to 'Custom'.  changed mediaitem.py back to it's original state.
-- 
https://code.launchpad.net/~smpettit/openlp/preview-edit-custom/+merge/65007
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/plugins/custom/customplugin.py'
--- openlp/plugins/custom/customplugin.py	2011-06-12 16:02:52 +0000
+++ openlp/plugins/custom/customplugin.py	2011-06-17 14:41:33 +0000
@@ -46,7 +46,7 @@
     log.info(u'Custom Plugin loaded')
 
     def __init__(self, plugin_helpers):
-        Plugin.__init__(self, u'Custom Slide', plugin_helpers,
+        Plugin.__init__(self, u'Custom', plugin_helpers,
             CustomMediaItem, CustomTab)
         self.weight = -5
         self.manager = Manager(u'custom', init_schema)


Follow ups