summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-09-24 12:57:16 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-24 12:57:16 +0200
commit9355845d29bac0c92235aee78f0747cbfe830f5d (patch)
tree1a35a287dc75266bcecc0770d9b29d7f3de91bf5 /doc
parent63d16a9bc3d86cd92a819b4f9979783b29796497 (diff)
parent9b474e3a8e16d4e1128475cbab3abba27abef41d (diff)
downloadredot-engine-9355845d29bac0c92235aee78f0747cbfe830f5d.tar.gz
Merge pull request #97367 from AdriaandeJongh/clarify-canvasitem-visibility-followup
Clarify CanvasItem's visibility signal descriptions (followup)
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/CanvasItem.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/CanvasItem.xml b/doc/classes/CanvasItem.xml
index 423059a0c7..bc17c8b008 100644
--- a/doc/classes/CanvasItem.xml
+++ b/doc/classes/CanvasItem.xml
@@ -648,7 +648,7 @@
</signal>
<signal name="hidden">
<description>
- Emitted when the [CanvasItem] becomes hidden, either because its own [member visible] property was set to [code]false[/code] or the [member visible] property of one of its [CanvasItem] ancestors was set to [code]false[/code].
+ Emitted when the [CanvasItem] is hidden, i.e. it's no longer visible in the tree (see [method is_visible_in_tree]).
</description>
</signal>
<signal name="item_rect_changed">
@@ -658,7 +658,7 @@
</signal>
<signal name="visibility_changed">
<description>
- Emitted when the [CanvasItem]'s visibility changes, either because its own [member visible] property changed or because the visility of one of its [CanvasItem] ancestors changed (equivalent to a change in [method is_visible_in_tree]).
+ Emitted when the [CanvasItem]'s visibility changes, either because its own [member visible] property changed or because its visibility in the tree changed (see [method is_visible_in_tree]).
</description>
</signal>
</signals>