Remove excessiove debugging

bzr-revno: 1182
This commit is contained in:
Tim Bentley 2011-01-01 17:01:53 +00:00
commit d50f0a8c48
2 changed files with 4 additions and 6 deletions

View File

@ -220,14 +220,14 @@ class EventReceiver(QtCore.QObject):
Waits for openlp to do something "interesting" and sends a Waits for openlp to do something "interesting" and sends a
remotes_poll_response signal when it does remotes_poll_response signal when it does
``openlp_critical_message`` ``openlp_warning_message``
Displays a standalong Critical Message Displays a standalone Warning Message
``openlp_error_message`` ``openlp_error_message``
Displays a standalong Error Message Displays a standalone Error Message
``openlp_information_message`` ``openlp_information_message``
Displays a standalong Information Message Displays a standalone Information Message
``cursor_busy`` ``cursor_busy``
Makes the cursor got to a busy form Makes the cursor got to a busy form

View File

@ -387,7 +387,6 @@ class SlideController(QtGui.QWidget):
Settings dialog has changed the screen size of adjust output and Settings dialog has changed the screen size of adjust output and
screen previews. screen previews.
""" """
log.debug(u'screenSizeChanged live = %s' % self.isLive)
# rebuild display as screen size changed # rebuild display as screen size changed
self.display = MainDisplay(self, self.screens, self.isLive) self.display = MainDisplay(self, self.screens, self.isLive)
self.display.imageManager = self.parent.renderManager.image_manager self.display.imageManager = self.parent.renderManager.image_manager
@ -403,7 +402,6 @@ class SlideController(QtGui.QWidget):
Takes care of the SlidePreview's size. Is called when one of the the Takes care of the SlidePreview's size. Is called when one of the the
splitters is moved or when the screen size is changed. 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( if self.ratio < float(self.PreviewFrame.width()) / float(
self.PreviewFrame.height()): self.PreviewFrame.height()):
# We have to take the height as limit. # We have to take the height as limit.