fixing aspect_ratio
This commit is contained in:
parent
882da7b9b1
commit
af1cb704d5
|
@ -372,15 +372,14 @@ class DisplayMixin:
|
||||||
"""
|
"""
|
||||||
if self.resolution_height and self.resolution_width:
|
if self.resolution_height and self.resolution_width:
|
||||||
return Fraction(self.resolution_width, self.resolution_height)
|
return Fraction(self.resolution_width, self.resolution_height)
|
||||||
|
return 0
|
||||||
|
|
||||||
# noinspection PyUnresolvedReferences
|
# noinspection PyUnresolvedReferences
|
||||||
@aspect_ratio.expression
|
@aspect_ratio.expression
|
||||||
def aspect_ratio(cls):
|
def aspect_ratio(cls):
|
||||||
# The aspect ratio to use as SQL in the DB
|
# The aspect ratio to use as SQL in the DB
|
||||||
# This allows comparing resolutions
|
# This allows comparing resolutions
|
||||||
if cls.resolution_height and cls.resolution_width:
|
|
||||||
return db.func.round(cls.resolution_width / cls.resolution_height, 2)
|
return db.func.round(cls.resolution_width / cls.resolution_height, 2)
|
||||||
return 4/3
|
|
||||||
|
|
||||||
@hybrid_property
|
@hybrid_property
|
||||||
def widescreen(self):
|
def widescreen(self):
|
||||||
|
|
Reference in New Issue