Beispiel #1
0
# menuTitle : 03: Experiment - Purple
# shortCut  : command+control+shift+3
"""
  Mark currently-selected glyphs as "worked on,"
  so it's clear they have been edited.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

f = CurrentFont()
markGlyphs(f, markSettings["experiment"])
Beispiel #2
0
# menuTitle : 01: Needs Fixing - Red
# shortCut  : command+control+shift+1
"""
  Mark currently-selected glyphs as "Needs Fixing,"
  so it's clear they should be fixed later.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

f = CurrentFont()
markGlyphs(f, markSettings["fix"])
# menuTitle : 02: Needs Feedback - Yellow
# shortCut  : command+control+shift+2
"""
  Mark currently-selected glyphs as "waiting on critique,"
  so it's clear what a collaborate should critique.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

f = CurrentFont()
markGlyphs(f, markSettings["check"])
# menuTitle : 04 Non-Exporting - Gray
# shortCut  : command+control+shift+4
"""
  Mark currently-selected glyphs as a "non-exporting component,"
  so it's clear that it shouldn't be directly included in an output font.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

f = CurrentFont()
markGlyphs(f, markSettings["nonexporting"])
# menuTitle : 05: Built from Components - Light Gray
# shortCut  : command+control+shift+5
"""
  Mark currently-selected glyphs as a "non-exporting component,"
  so it's clear that it shouldn't be directly included in an output font.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

f = CurrentFont()
markGlyphs(f, markSettings["composed"])
Beispiel #6
0
# menuTitle : 00: Finished - No Mark
# shortCut  : command+control+shift+0
"""
  Mark currently-selected glyphs as "Finished,"
  so it's clear that they need no known work.
"""

from markLib.markGlyphs import markGlyphs
from markLib.settings import markSettings

color = None

f = CurrentFont()
markGlyphs(f, markSettings["finished"])