et value of "ph" to 0 if division by zero takes place

This commit is contained in:
erilyth 2015-12-22 15:12:15 +05:30
parent e3b61a0ee0
commit 3ceb14f884

View File

@ -971,6 +971,10 @@ class Invoker(GObject.GObject):
ih = 0 ih = 0
if palette_dim.width == 0:
ph = 0
else:
# Set palette_halign to align to screen on left # Set palette_halign to align to screen on left
if dleft > dright: if dleft > dright:
ph = -float(dleft) / palette_dim.width ph = -float(dleft) / palette_dim.width