From 6891c942a106b99af7f3b2ae9fa68d9f56d3c8c0 Mon Sep 17 00:00:00 2001 From: Tomasz Chabora Date: Sat, 6 Jul 2019 17:58:57 +0200 Subject: [PATCH] Clarify better what Node.raise does (cherry picked from commit a26f52db3390f97528fd6ae6da8c02df72e4abc2) --- doc/classes/Node.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index a8295878fc8..64cc3667fdc 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -540,7 +540,7 @@ - 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.