From ea24fa8d2a493d97846c5cbc90cce56e50679814 Mon Sep 17 00:00:00 2001 From: Nikolaus Waxweiler Date: Fri, 22 Feb 2019 11:29:33 +0000 Subject: [PATCH 1/2] [varLib] load_designspace: add standard en name for ital tag --- Lib/fontTools/varLib/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/fontTools/varLib/__init__.py b/Lib/fontTools/varLib/__init__.py index 6ec4113ff..6e534ea0c 100644 --- a/Lib/fontTools/varLib/__init__.py +++ b/Lib/fontTools/varLib/__init__.py @@ -688,6 +688,7 @@ def load_designspace(designspace): ('width', ('wdth', {'en': u'Width'})), ('slant', ('slnt', {'en': u'Slant'})), ('optical', ('opsz', {'en': u'Optical Size'})), + ('italic', ('ital', {'en': u'Italic'})), ]) # Setup axes From 3cb88ba861dfbd4947dca14a5b6c456ef8de1b70 Mon Sep 17 00:00:00 2001 From: Nikolaus Waxweiler Date: Fri, 22 Feb 2019 13:02:44 +0000 Subject: [PATCH 2/2] Add NEWS item --- NEWS.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index b3b0adb36..0c6d135d3 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,6 @@ +- [varLib] ``load_designspace()``: Provide a default English name for the ital + axis tag. + 3.38.0 (released 2019-02-18) ----------------------------