fix accidental incorrect naming of variable font ("Inter Display", should be "Inter Variable")
This commit is contained in:
parent
7c6ad9f1b9
commit
5eb51269f2
1 changed files with 2 additions and 2 deletions
|
|
@ -257,7 +257,7 @@ def main():
|
||||||
description='Generate STAT table for variable font family')
|
description='Generate STAT table for variable font family')
|
||||||
a = lambda *args, **kwargs: argparser.add_argument(*args, **kwargs)
|
a = lambda *args, **kwargs: argparser.add_argument(*args, **kwargs)
|
||||||
a('--family', metavar='<name>',
|
a('--family', metavar='<name>',
|
||||||
help='Rename family to <name> instead of "Inter Display"')
|
help='Rename family to <name> instead of "Inter Variable"')
|
||||||
a('-o', '--output', metavar='<file>',
|
a('-o', '--output', metavar='<file>',
|
||||||
help='Output font file. Defaults to input file (overwrite)')
|
help='Output font file. Defaults to input file (overwrite)')
|
||||||
a('input', metavar='<file>', help='Input font file')
|
a('input', metavar='<file>', help='Input font file')
|
||||||
|
|
@ -269,7 +269,7 @@ def main():
|
||||||
|
|
||||||
# set family name
|
# set family name
|
||||||
if not args.family:
|
if not args.family:
|
||||||
args.family = "Inter Display"
|
args.family = "Inter Variable"
|
||||||
setFamilyName(font, args.family)
|
setFamilyName(font, args.family)
|
||||||
|
|
||||||
# set style name
|
# set style name
|
||||||
|
|
|
||||||
Reference in a new issue