forked from openlp/openlp
updated docstring
This commit is contained in:
parent
383d512c22
commit
8876a12deb
@ -243,19 +243,17 @@ class Renderer(object):
|
|||||||
new_pages.append(page)
|
new_pages.append(page)
|
||||||
return new_pages
|
return new_pages
|
||||||
|
|
||||||
def _calculate_default(self, screen):
|
def _calculate_default(self, size):
|
||||||
"""
|
"""
|
||||||
Calculate the default dimentions of the screen.
|
Calculate the default dimentions of the screen.
|
||||||
|
|
||||||
``screen``
|
``size``
|
||||||
The screen to calculate the default of.
|
The screen's size to calculate the default of (``QtCore.QRect``).
|
||||||
"""
|
"""
|
||||||
log.debug(u'_calculate default %s', screen)
|
self.width = size.width()
|
||||||
self.width = screen.width()
|
self.height = size.height()
|
||||||
self.height = screen.height()
|
|
||||||
self.screen_ratio = float(self.height) / float(self.width)
|
self.screen_ratio = float(self.height) / float(self.width)
|
||||||
log.debug(u'calculate default %d, %d, %f',
|
log.debug(u'_calculate default %s, %f' % (size, self.screen_ratio))
|
||||||
self.width, self.height, self.screen_ratio)
|
|
||||||
# 90% is start of footer
|
# 90% is start of footer
|
||||||
self.footer_start = int(self.height * 0.90)
|
self.footer_start = int(self.height * 0.90)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user