Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/scripts/ttx_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def source_is_variable(path: Path) -> bool:
return False
if path.suffix == ".designspace":
dspace = DesignSpaceDocument.fromfile(path)
return len(dspace.sources) > 1
return len(dspace.axes) > 0
if path.suffix == ".glyphs" or path.suffix == ".glyphspackage":
font = GSFont(path)
return len(font.masters) > 1
Expand Down
Loading