diff options
author | dankan1890 <mewuidev2@gmail.com> | 2019-10-06 22:07:50 +0200 |
---|---|---|
committer | dankan1890 <mewuidev2@gmail.com> | 2019-10-06 22:07:50 +0200 |
commit | b469ff17e2e1171f50a279198a768857192c7d1a (patch) | |
tree | d62eb76bf38516f88cea4c5010aa0076f808598b | |
parent | 7801fdfedb1298f46c7031ff92deb9c276eec11c (diff) |
Added missing bind_method to TreeItem::get_custom_color().
Fix #32595
-rw-r--r-- | doc/classes/TreeItem.xml | 9 | ||||
-rw-r--r-- | scene/gui/tree.cpp | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/classes/TreeItem.xml b/doc/classes/TreeItem.xml index 01d690589b..a4c976591f 100644 --- a/doc/classes/TreeItem.xml +++ b/doc/classes/TreeItem.xml @@ -120,6 +120,15 @@ Returns the custom background color of column [code]column[/code]. </description> </method> + <method name="get_custom_color" qualifiers="const"> + <return type="Color"> + </return> + <argument index="0" name="column" type="int"> + </argument> + <description> + Returns the custom color of column [code]column[/code]. + </description> + </method> <method name="get_expand_right" qualifiers="const"> <return type="bool"> </return> diff --git a/scene/gui/tree.cpp b/scene/gui/tree.cpp index 1b52796dc7..c9d1295557 100644 --- a/scene/gui/tree.cpp +++ b/scene/gui/tree.cpp @@ -827,6 +827,7 @@ void TreeItem::_bind_methods() { ClassDB::bind_method(D_METHOD("set_custom_color", "column", "color"), &TreeItem::set_custom_color); ClassDB::bind_method(D_METHOD("clear_custom_color", "column"), &TreeItem::clear_custom_color); + ClassDB::bind_method(D_METHOD("get_custom_color", "column"), &TreeItem::get_custom_color); ClassDB::bind_method(D_METHOD("set_custom_bg_color", "column", "color", "just_outline"), &TreeItem::set_custom_bg_color, DEFVAL(false)); ClassDB::bind_method(D_METHOD("clear_custom_bg_color", "column"), &TreeItem::clear_custom_bg_color); |