Sorted the font list for OptionMenu

This commit is contained in:
Andrew Williams 2018-06-12 14:33:41 -05:00
parent 1a8bee356f
commit 236b60340b

View file

@ -42,6 +42,7 @@ import glob
version = '1.0'
fontPath = os.path.dirname(os.path.realpath(__file__))+'/cxf-fonts/'
fontList = [os.path.basename(x) for x in glob.glob(fontPath + '*.cxf')]
fontList = sorted(fontList)
fontfile = ''
IN_AXIS = os.environ.has_key("AXIS_PROGRESS_BAR")