Minor translation fixes, added all map translationsfor party updates, translated all mob names for Flame and Snow dungeon to all locales, fixed realtime countdowns and tooltip element centering, applied use of toolTip for affect icons
This commit is contained in:
@@ -26,9 +26,14 @@ class CursorImage(object):
|
||||
self.handle = 0
|
||||
self.LoadImage(imageName)
|
||||
|
||||
# MR-10: Fix mouse destruction
|
||||
def __del__(self):
|
||||
if grpImage and self.handle:
|
||||
grpImage.Delete(self.handle)
|
||||
try:
|
||||
if grpImage and self.handle and hasattr(grpImage, "Delete"):
|
||||
grpImage.Delete(self.handle)
|
||||
except:
|
||||
pass
|
||||
# MR-10: -- END OF -- Fix mouse destruction
|
||||
|
||||
def LoadImage(self, imageName):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user