catch more driver calls
This commit is contained in:
@ -160,11 +160,29 @@ class screenManager():
|
||||
return ''
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirBGColor', self.env['runtime']['screenDriver'].getFenrirBGColor(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirFGColor', self.env['runtime']['screenDriver'].getFenrirFGColor(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirUnderline', self.env['runtime']['screenDriver'].getFenrirUnderline(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirBold', self.env['runtime']['screenDriver'].getFenrirBold(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirBlink', self.env['runtime']['screenDriver'].getFenrirBlink(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirFontSize', self.env['runtime']['screenDriver'].getFenrirFontSize(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
try:
|
||||
attributeFormatString = attributeFormatString.replace('fenrirFont', self.env['runtime']['screenDriver'].getFenrirFont(attribute))
|
||||
except Exception as e:
|
||||
pass
|
||||
|
Reference in New Issue
Block a user