From 24fd057cbbaf40ba5c4763533b45e6076afd0672 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 13 Sep 2020 09:59:14 +0200 Subject: [PATCH] MeshPart: [skip ci] import MeshPartGui in order to load icon resources --- src/Mod/MeshPart/Gui/MeshFlatteningCommand.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py index 144bfea919..e228772018 100644 --- a/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py +++ b/src/Mod/MeshPart/Gui/MeshFlatteningCommand.py @@ -2,6 +2,7 @@ import Mesh import FreeCAD as App import FreeCADGui as Gui import Part +import MeshPartGui class BaseCommand(object): def __init__(self): @@ -12,7 +13,7 @@ class BaseCommand(object): return False else: return True - + class CreateFlatMesh(BaseCommand): """create flat wires from a meshed face"""