[IMP] Look for TTC font files as well as TTF

TTC fonts is widely used in CJK font. Odoo should support ttc fonts recognition.
This commit is contained in:
youring 2015-01-12 09:07:38 +08:00 committed by Xavier Morel
parent 319e99f82c
commit be8ee97c44
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def list_all_sysfonts():
# TTFOpenFile is not very good at it.
searchpath = list(set(TTFSearchPath + rl_config.TTFSearchPath))
for dirname in searchpath:
for filename in glob.glob(os.path.join(os.path.expanduser(dirname), '*.[Tt][Tt][Ff]')):
for filename in glob.glob(os.path.join(os.path.expanduser(dirname), '*.[Tt][Tt][FfCc]')):
filepath.append(filename)
return filepath