Skip to content

Commit

Permalink
Default to not making minimal UFOs
Browse files Browse the repository at this point in the history
  • Loading branch information
simoncozens committed Sep 22, 2021
1 parent 96e8c06 commit aa2cdf3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Lib/glyphsLib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""

Expand Down
4 changes: 2 additions & 2 deletions Lib/glyphsLib/builder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Lib/glyphsLib/builder/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit aa2cdf3

Please sign in to comment.