Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKostas Karmas <konskarm@gmail.com>2021-02-01 19:37:16 +0300
committerKostas Karmas <konskarm@gmail.com>2021-02-01 19:37:16 +0300
commitec9d692a6838600399fc648066892439594b1d58 (patch)
tree805ac095d1c424a687c8641354e6491987a5dcab /docs
parent6ff6fa4af0c0d592cce663c3c84a82f678f06019 (diff)
Fix inline code to point to the correct function
CURA-7502
Diffstat (limited to 'docs')
-rw-r--r--docs/scene/scene.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/scene/scene.md b/docs/scene/scene.md
index 5d5def50d0..4e6df4abd1 100644
--- a/docs/scene/scene.md
+++ b/docs/scene/scene.md
@@ -171,10 +171,10 @@ BuildPlateDecorator
The BuildPlateDecorator is added to all the CuraSceneNodes. This decorator is linked to a legacy feature which allowed the user to have multiple build plates open in Cura at the same time. With this decorator it was possible to determine which nodes are present on each build plate, and therefore, which objects should be visible in the currently active build plate. It indicates the number of the build plate this scene node belongs to, which currently is always the build plate -1.
-This decorator provides the following function to the node:
+This decorator provides a function to the node that returns the number of the build plate it belongs to:
```python
-node.callDecoration("isSliceable")
+node.callDecoration("getBuildPlateNumber")
```
**Note:** Changing the active build plate is a disabled feature in Cura and it is intended to be completely removed (internal ticket: CURA-4975).