diff options
| author | Claudine Peyrat <88194877+claudinepeyrat06@users.noreply.github.com> | 2025-08-24 20:31:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-24 20:31:43 +0200 |
| commit | 0b3e0e962dd238297a0c05896b592837c0480015 (patch) | |
| tree | d3a47331d23bd52f12ed4354d47963409197745c /lib/extensions | |
| parent | dbef888e4d07fbd8dd840d160266768e41c894a2 (diff) | |
rename extension (#3938)
rename lettering_fill_composed_glyphs lettering_organize_glyphs
Diffstat (limited to 'lib/extensions')
| -rw-r--r-- | lib/extensions/__init__.py | 4 | ||||
| -rw-r--r-- | lib/extensions/lettering_organize_glyphs.py (renamed from lib/extensions/lettering_fill_composed_glyphs.py) | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py index 4308d316..f6694a90 100644 --- a/lib/extensions/__init__.py +++ b/lib/extensions/__init__.py @@ -35,7 +35,7 @@ from .lettering import Lettering from .lettering_along_path import LetteringAlongPath from .lettering_custom_font_dir import LetteringCustomFontDir from .lettering_edit_json import LetteringEditJson -from .lettering_fill_composed_glyphs import LetteringFillComposedGlyphs +from .lettering_organize_glyphs import LetteringOrganizeGlyphs from .lettering_font_sample import LetteringFontSample from .lettering_force_lock_stitches import LetteringForceLockStitches from .lettering_generate_json import LetteringGenerateJson @@ -113,7 +113,7 @@ extensions = [ LetteringAlongPath, LetteringCustomFontDir, LetteringEditJson, - LetteringFillComposedGlyphs, + LetteringOrganizeGlyphs, LetteringFontSample, LetteringForceLockStitches, LetteringGenerateJson, diff --git a/lib/extensions/lettering_fill_composed_glyphs.py b/lib/extensions/lettering_organize_glyphs.py index edc1dd81..067cc6db 100644 --- a/lib/extensions/lettering_fill_composed_glyphs.py +++ b/lib/extensions/lettering_organize_glyphs.py @@ -10,7 +10,7 @@ from .base import InkstitchExtension from ..i18n import _ -class LetteringFillComposedGlyphs(InkstitchExtension): +class LetteringOrganizeGlyphs(InkstitchExtension): """_summary_ The goal of this extension is to help the font digitizer with steps to organize its work. At each step a group of glyphs is brought to the top of the object stack, and the font |
