-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VF settings fixup for #812/#813 #815
Conversation
Lib/glyphsLib/classes.py
Outdated
@@ -141,6 +141,9 @@ | |||
OFFCURVE = "offcurve" | |||
QCURVE = "qcurve" | |||
|
|||
INSTANCETYPESINGLE = 0 | |||
INSTANCETYPEVARIABLE = 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be defined in https://github.com/googlefonts/glyphsLib/blob/main/Lib/glyphsLib/builder/constants.py maybe? The same probably applies for the other constants defined in here, at least those that are imported by other modules and not private to the current one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moving it there leads to circular imports. It's not immediately obvious to me how to avoid that ...
LGTM |
Small fixup for #812 and #813.