Skip to content

Commit

Permalink
Provide access to addLocationLabel and addLocationLabelDescriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
LettError committed Nov 14, 2024
1 parent a0c1ce9 commit e8593dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ Tests/20190830 benders/Skateboard Previews
/_old_stuff
/Tests/ds5/instances
/Tests/ds5/ds5_log.txt
Tests/ds5/makeOneInstanceOutput*
6 changes: 6 additions & 0 deletions Lib/ufoProcessor/ufoOperator.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,12 @@ def addAxis(self, axisDescriptor):
def addAxisDescriptor(self, **kwargs):
return self.doc.addAxisDescriptor(**kwargs)

def addLocationLabel(self, locationLabelDescriptor):
self.doc.addLocationLabel(locationLabelDescriptor)

def addLocationLabelDescriptor(self, **kwargs):
return self.doc.addLocationLabelDescriptor(**kwargs)

def addRule(self, ruleDescriptor):
self.doc.addRule(ruleDescriptor)

Expand Down

0 comments on commit e8593dc

Please sign in to comment.