← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~trb143/openlp/bugs into lp:openlp

 

Tim Bentley has proposed merging lp:~trb143/openlp/bugs into lp:openlp.

Requested reviews:
  OpenLP Core (openlp-core)
Related bugs:
  #693150 Custom Slide Display footer option
  https://bugs.launchpad.net/bugs/693150
  #693202 delete theme
  https://bugs.launchpad.net/bugs/693202

For more details, see:
https://code.launchpad.net/~trb143/openlp/bugs/+merge/44978

Remove debugging code as these lines swamp the debug files with a line per mouse pixel movement
-- 
https://code.launchpad.net/~trb143/openlp/bugs/+merge/44978
Your team OpenLP Core is requested to review the proposed merge of lp:~trb143/openlp/bugs into lp:openlp.
=== modified file 'openlp/core/lib/eventreceiver.py'
--- openlp/core/lib/eventreceiver.py	2011-01-01 12:50:49 +0000
+++ openlp/core/lib/eventreceiver.py	2011-01-01 15:36:07 +0000
@@ -220,14 +220,14 @@
         Waits for openlp to do something "interesting" and sends a
         remotes_poll_response signal when it does
 
-    ``openlp_critical_message``
-        Displays a standalong Critical Message
+    ``openlp_warning_message``
+        Displays a standalone Warning Message
 
     ``openlp_error_message``
-        Displays a standalong Error Message
+        Displays a standalone Error Message
 
     ``openlp_information_message``
-        Displays a standalong Information Message
+        Displays a standalone Information Message
 
     ``cursor_busy``
         Makes the cursor got to a busy form

=== modified file 'openlp/core/ui/slidecontroller.py'
--- openlp/core/ui/slidecontroller.py	2010-12-31 19:19:06 +0000
+++ openlp/core/ui/slidecontroller.py	2011-01-01 15:36:07 +0000
@@ -387,7 +387,6 @@
         Settings dialog has changed the screen size of adjust output and
         screen previews.
         """
-        log.debug(u'screenSizeChanged live = %s' % self.isLive)
         # rebuild display as screen size changed
         self.display = MainDisplay(self, self.screens, self.isLive)
         self.display.imageManager = self.parent.renderManager.image_manager
@@ -403,7 +402,6 @@
         Takes care of the SlidePreview's size. Is called when one of the the
         splitters is moved or when the screen size is changed.
         """
-        log.debug(u'previewSizeChanged live = %s' % self.isLive)
         if self.ratio < float(self.PreviewFrame.width()) / float(
             self.PreviewFrame.height()):
             # We have to take the height as limit.


Follow ups