Fixed a traceback in fittingview - MakeSnapshot - gtfo if fit is None

This commit is contained in:
HomeWorld
2011-01-14 11:23:32 +02:00
parent 1d5293fc63
commit ca57d80f8b

View File

@@ -431,6 +431,9 @@ class FittingView(d.Display):
except:
return
if fit is None:
return
slotMap = {}
for slotType in Slot.getTypes():
slot = Slot.getValue(slotType)