summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMicky <micheledevita2@gmail.com>2022-08-29 15:20:48 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-09-07 11:58:30 +0200
commit08c2aab169dd3f36bf43bd1e1f48b68bf3fed5a9 (patch)
treeb5a263bdffb3a70e3e0a53e40dd5369b60f9ba58 /doc
parentf577bae76f85575c3bebebbc90c7a0120a66a8db (diff)
Rename ProgressBar.`percent_visible` to `show_percentage`
`percent_visible` -> `show_percentage` `set_percent_visible` -> `set_show_percentage` `is_percent_visible` -> `is_percentage_shown`
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/ProgressBar.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/ProgressBar.xml b/doc/classes/ProgressBar.xml
index 55c53a66ee..510b8d5bd1 100644
--- a/doc/classes/ProgressBar.xml
+++ b/doc/classes/ProgressBar.xml
@@ -12,7 +12,7 @@
<member name="fill_mode" type="int" setter="set_fill_mode" getter="get_fill_mode" default="0">
The fill direction. See [enum FillMode] for possible values.
</member>
- <member name="percent_visible" type="bool" setter="set_percent_visible" getter="is_percent_visible" default="true">
+ <member name="show_percentage" type="bool" setter="set_show_percentage" getter="is_percentage_shown" default="true">
If [code]true[/code], the fill percentage is displayed on the bar.
</member>
</members>
@@ -44,10 +44,10 @@
The size of the text outline.
</theme_item>
<theme_item name="font" data_type="font" type="Font">
- Font used to draw the fill percentage if [member percent_visible] is [code]true[/code].
+ Font used to draw the fill percentage if [member show_percentage] is [code]true[/code].
</theme_item>
<theme_item name="font_size" data_type="font_size" type="int">
- Font size used to draw the fill percentage if [member percent_visible] is [code]true[/code].
+ Font size used to draw the fill percentage if [member show_percentage] is [code]true[/code].
</theme_item>
<theme_item name="background" data_type="style" type="StyleBox">
The style of the background.