diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-07-12 18:28:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-12 18:28:07 +0200 |
| commit | e65788cea72531f922fe4bccda4ec0c06047df10 (patch) | |
| tree | c0dab71fe4e2c44ea3de1900e05de46001290558 /lib/inx | |
| parent | 3d3baddf6a85cab368fd5c09a6ca5ae6d912f5c4 (diff) | |
Lettering: add glyph filter (#2400)
Co-authored-by: claudinepeyrat06
Diffstat (limited to 'lib/inx')
| -rwxr-xr-x | lib/inx/extensions.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/inx/extensions.py b/lib/inx/extensions.py index 0ff3e889..30fca4da 100755 --- a/lib/inx/extensions.py +++ b/lib/inx/extensions.py @@ -8,6 +8,7 @@ import pyembroidery from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS, OBJECT_COMMANDS) from ..extensions import Input, Output, extensions +from ..lettering.categories import FONT_CATEGORIES from ..threads import ThreadCatalog from .outputs import pyembroidery_output_formats from .utils import build_environment, write_inx_file @@ -51,6 +52,7 @@ def generate_extension_inx_files(): write_inx_file(name, template.render(formats=pyembroidery_output_formats(), debug_formats=pyembroidery_debug_formats(), threadcatalog=threadcatalog(), + font_categories=FONT_CATEGORIES, layer_commands=layer_commands(), object_commands=object_commands(), global_commands=global_commands())) |
