You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add/fix support for disabled custom parameters? It's handy to disable a custom parameter in Glyphs, but instead I have to delete the custom parameter if I want glyphsLib to ignore it.
After digging around in glyphsLib I can see that there seems to be partial support for it, but it isn't working properly. For example, if my .glyphs source contains:
customParameters = (
{
disabled = 1;
name = glyphOrder;
value = (
x,
y,
z
);
}
);
And if I load the same .glyphs source as an object, I can see that GSCustomParameter does seem to have a disabled property, but the value is False when it should be True.
Would it be possible to add/fix support for disabled custom parameters? It's handy to disable a custom parameter in Glyphs, but instead I have to delete the custom parameter if I want glyphsLib to ignore it.
After digging around in glyphsLib I can see that there seems to be partial support for it, but it isn't working properly. For example, if my .glyphs source contains:
…then glyphsLib outputs a lib.plist containing:
And if I load the same .glyphs source as an object, I can see that
GSCustomParameter
does seem to have adisabled
property, but the value isFalse
when it should beTrue
.The text was updated successfully, but these errors were encountered: