diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-08-05 00:18:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 00:18:56 +0200 |
commit | a544e77822b40b39198f92ee3346bbfe7921ac41 (patch) | |
tree | 11a287a887ddbf4b39e5d1b8dc37ca82cadf543f /doc/classes/MarginContainer.xml | |
parent | 73b1f5ac795b6c8d02931b30c84a5f94eb3752d7 (diff) | |
parent | bf2839ea3ee280462fb9117a73bae407354ea832 (diff) |
Merge pull request #51247 from pycbouh/docs-extract-theme-items
Add theme item descriptions to the online documentation
Diffstat (limited to 'doc/classes/MarginContainer.xml')
-rw-r--r-- | doc/classes/MarginContainer.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/MarginContainer.xml b/doc/classes/MarginContainer.xml index a51632d5f1..419857c13f 100644 --- a/doc/classes/MarginContainer.xml +++ b/doc/classes/MarginContainer.xml @@ -32,16 +32,16 @@ <constants> </constants> <theme_items> - <theme_item name="margin_bottom" type="int" default="0"> + <theme_item name="margin_bottom" data_type="constant" type="int" default="0"> All direct children of [MarginContainer] will have a bottom margin of [code]margin_bottom[/code] pixels. </theme_item> - <theme_item name="margin_left" type="int" default="0"> + <theme_item name="margin_left" data_type="constant" type="int" default="0"> All direct children of [MarginContainer] will have a left margin of [code]margin_left[/code] pixels. </theme_item> - <theme_item name="margin_right" type="int" default="0"> + <theme_item name="margin_right" data_type="constant" type="int" default="0"> All direct children of [MarginContainer] will have a right margin of [code]margin_right[/code] pixels. </theme_item> - <theme_item name="margin_top" type="int" default="0"> + <theme_item name="margin_top" data_type="constant" type="int" default="0"> All direct children of [MarginContainer] will have a top margin of [code]margin_top[/code] pixels. </theme_item> </theme_items> |