diff options
Diffstat (limited to 'src/dxflinextrude.cc')
-rw-r--r-- | src/dxflinextrude.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dxflinextrude.cc b/src/dxflinextrude.cc index 14d69c4..fd37ffa 100644 --- a/src/dxflinextrude.cc +++ b/src/dxflinextrude.cc @@ -76,8 +76,10 @@ AbstractNode *DxfLinearExtrudeModule::evaluate(const Context *ctx, const ModuleI Value twist = c.lookup_variable("twist", true); Value slices = c.lookup_variable("slices", true); - if (!file.text.empty()) + if (!file.text.empty()) { + PRINTF("DEPRECATED: Support for reading files in linear_extrude will be removed in future releases. Use a child import() instead."); node->filename = c.getAbsolutePath(file.text); + } node->layername = layer.text; node->height = height.num; |