Skip to content

Commit

Permalink
Allow setting arrow size with Glyphs.defaults["de.kutilek.RedArrow.ar…
Browse files Browse the repository at this point in the history
…rowSize"] = 10
  • Loading branch information
jenskutilek committed Apr 16, 2024
1 parent c8ce406 commit 6f972e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RedArrow.glyphsReporter/Contents/Resources/plugin.py
Expand Up @@ -428,7 +428,7 @@ def _drawUnspecified(self, position, kind, size, vector=normal_vector, level="e"

@objc.python_method
def _drawArrows(self, debug=False):
size = 10 / self.getScale()
size = Glyphs.defaults.get(full_libkey("arrowSize"), 10) / self.getScale()
errors_by_position = {}
for e in self.errors:
if e.position is not None:
Expand Down

0 comments on commit 6f972e7

Please sign in to comment.