summaryrefslogtreecommitdiff
path: root/lib/extensions/stitch_plan_preview.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-05-17 09:56:47 +0200
committerGitHub <noreply@github.com>2024-05-17 09:56:47 +0200
commitb024dc57f2edd5c05b40cf9c3426d61169793ecc (patch)
tree629764259ee621076d1de33084de39e430fcb132 /lib/extensions/stitch_plan_preview.py
parent9188d6aba78e25d0595279df00c3ba9aef1df404 (diff)
fix realistic preview for pyinstaller packaged linux build (#2912)
Diffstat (limited to 'lib/extensions/stitch_plan_preview.py')
-rw-r--r--lib/extensions/stitch_plan_preview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extensions/stitch_plan_preview.py b/lib/extensions/stitch_plan_preview.py
index 12766ad7..75b8e497 100644
--- a/lib/extensions/stitch_plan_preview.py
+++ b/lib/extensions/stitch_plan_preview.py
@@ -9,7 +9,6 @@ from tempfile import TemporaryDirectory
from typing import Optional, Tuple
from inkex import BaseElement, Boolean, Image, errormsg
-from inkex.command import inkscape
from ..commands import add_layer_commands
from ..marker import set_marker
@@ -20,6 +19,7 @@ from ..svg.tags import (INKSCAPE_GROUPMODE, INKSTITCH_ATTRIBS,
XLINK_HREF)
from .base import InkstitchExtension
from .stitch_plan_preview_undo import reset_stitch_plan
+from .utils.inkex_command import inkscape
class StitchPlanPreview(InkstitchExtension):