schriftgestalt/GlyphsSDK

GSFilterPlugin: template misses `[super setup]` call

Closed this issue · 1 comments

- (NSError *)setup {
NSNumber *firstValueNumber = (NSNumber *)[_fontMaster userDataForKey:@"theFirstValue"];

Needs to insert

[super setup];

here, otherwise we end up having nil in _shadowLayers at - process: and the filter won't work as the container will never be initialized.

fixed in d23a209