Clarify better what Node.raise does

(cherry picked from commit a26f52db33)
This commit is contained in:
Tomasz Chabora 2019-07-06 17:58:57 +02:00 committed by Rémi Verschelde
parent e9f4886253
commit 6891c942a1
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@
<return type="void">
</return>
<description>
Moves this node to the top of the array of nodes of the parent node. This is often useful in GUIs ([Control] nodes), because their order of drawing depends on their order in the tree.
Moves this node to the bottom of parent node's children hierarchy. This is often useful in GUIs ([Control] nodes), because their order of drawing depends on their order in the tree, i.e. the further they are on the node list, the higher they are drawn. After using [code]raise[/code], a Control will be drawn on top of their siblings.
</description>
</method>
<method name="remove_and_skip">