Skip to content

Commit e1e5566

Browse files
committed
added new script for opening a tab with all glyphs that contain corners or caps
1 parent ad705bb commit e1e5566

15 files changed

+17
-1
lines changed

.gitignore

100644100755
File mode changed.

LICENSE.md

100644100755
File mode changed.

README.md

100644100755
File mode changed.

auto_metrics_all_fonts.py

100644100755
File mode changed.

copy_glyphs_to_second_font.py

100644100755
File mode changed.

copy_kerning_from_masters.py

100644100755
File mode changed.

copy_layers_to_second_font.py

100644100755
File mode changed.

get_metrics_string.py

100644100755
File mode changed.

helpers.py

100644100755
File mode changed.

highlight_unequal_widths.py

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
glyph.color = 9
1212
print glyph
1313
else:
14-
if glyph.color < 100:
14+
if glyph.color == 9:
1515
glyph.color = 9223372036854775807

hints_delete_glyph_master_hints.py

100644100755
File mode changed.

kerning_from_first_component.py

100644100755
File mode changed.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#MenuTitle: Tab with glyphs containing corners or caps
2+
'''
3+
Simple script to open a new tab with all glyphs that have
4+
corners or caps in any of their layers
5+
'''
6+
font = Glyphs.fonts[0]
7+
glyphsWithCornersOrCaps = []
8+
9+
for glyph in font.glyphs:
10+
for layer in glyph.layers:
11+
for hint in layer.hints:
12+
if hint.type == 16 or hint.type == 17: # 16-corner 17-cap
13+
glyphsWithCornersOrCaps.append(glyph)
14+
15+
glyphsWithCornersOrCaps = set(glyphsWithCornersOrCaps)
16+
font.newTab(" ".join(["/" + g.name for g in glyphsWithCornersOrCaps]))

set_default_anchors.py

100644100755
File mode changed.

sync_masters.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)