We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bece33 commit 2a60746Copy full SHA for 2a60746
review-helper.py
@@ -1,4 +1,4 @@
1
-#MenuTitle: Review helper: reveal all notes and annotations
+#MenuTitle: Review helper: reveall all notes and annotations
2
# -*- coding: utf-8 -*-
3
__doc__="""
4
Review helper, see all annotations/notes in current font project, including selected ones
@@ -27,5 +27,5 @@
27
28
print "\nNotes per glyphs to review across the whole font project :"
29
for glyph in font.glyphs:
30
- if not glyph.note == glyph.name:
+ if not glyph.note == "None": or if not glyph.note == glyph.name:
31
print glyph.name, ":", glyph.note
0 commit comments