Merge remote-tracking branch 'origin/master' into attrGroup

# Conflicts:
#	eve.db
This commit is contained in:
blitzmann
2018-10-13 00:02:06 -04:00
93 changed files with 76 additions and 43 deletions

View File

@@ -73,7 +73,11 @@ class BitmapLoader(object):
@classmethod
def getImage(cls, name, location):
return cls.getBitmap(name, location).ConvertToImage()
bmp = cls.getBitmap(name, location)
if bmp is not None:
return bmp.ConvertToImage()
else:
return None
@classmethod
def loadBitmap(cls, name, location):