From aa2cdf30da2812b675c39223cf78a581209af280 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Wed, 22 Sep 2021 09:40:19 +0100 Subject: [PATCH] Default to not making minimal UFOs --- Lib/glyphsLib/__init__.py | 2 +- Lib/glyphsLib/builder/__init__.py | 4 ++-- Lib/glyphsLib/builder/builders.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Lib/glyphsLib/__init__.py b/Lib/glyphsLib/__init__.py index 3eff86f30..905c30f30 100644 --- a/Lib/glyphsLib/__init__.py +++ b/Lib/glyphsLib/__init__.py @@ -53,7 +53,7 @@ def load_to_ufos( family_name=None, propagate_anchors=None, ufo_module=None, - minimal=True, + minimal=False, ): """Load an unpacked .glyphs object to UFO objects.""" diff --git a/Lib/glyphsLib/builder/__init__.py b/Lib/glyphsLib/builder/__init__.py index c9ebe97db..a2ca74bac 100644 --- a/Lib/glyphsLib/builder/__init__.py +++ b/Lib/glyphsLib/builder/__init__.py @@ -31,7 +31,7 @@ def to_ufos( generate_GDEF=True, store_editor_state=True, write_skipexportglyphs=False, - minimal=True, + minimal=False, ): """Take a GSFont object and convert it into one UFO per master. @@ -79,7 +79,7 @@ def to_designspace( generate_GDEF=True, store_editor_state=True, write_skipexportglyphs=False, - minimal=True, + minimal=False, ): """Take a GSFont object and convert it into a Designspace Document + UFOS. The UFOs are available as the attribute `font` of each SourceDescriptor of diff --git a/Lib/glyphsLib/builder/builders.py b/Lib/glyphsLib/builder/builders.py index 0059973b2..e148986b9 100644 --- a/Lib/glyphsLib/builder/builders.py +++ b/Lib/glyphsLib/builder/builders.py @@ -69,7 +69,7 @@ def __init__( generate_GDEF=True, store_editor_state=True, write_skipexportglyphs=False, - minimal=True, + minimal=False, ): """Create a builder that goes from Glyphs to UFO + designspace.