diff options
author | Kevin Fischer <46539626+Phischermen@users.noreply.github.com> | 2021-07-22 13:34:54 -0700 |
---|---|---|
committer | Kevin Fischer <46539626+Phischermen@users.noreply.github.com> | 2021-08-16 10:13:06 -0700 |
commit | 75866c81e7163a264bbbf1684a4564fae37fc50f (patch) | |
tree | d5bb773da62325e32e8021670e01ef1ee0ecb8d5 /scene/resources/default_theme/default_theme.cpp | |
parent | cfdac0973c2f1e5a3349c3d80262be130744384a (diff) |
Added icons and API for indeterminate checkmarks for the Tree class.
Diffstat (limited to 'scene/resources/default_theme/default_theme.cpp')
-rw-r--r-- | scene/resources/default_theme/default_theme.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/default_theme/default_theme.cpp b/scene/resources/default_theme/default_theme.cpp index 8208c55801..5f70a31844 100644 --- a/scene/resources/default_theme/default_theme.cpp +++ b/scene/resources/default_theme/default_theme.cpp @@ -704,6 +704,7 @@ void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const theme->set_icon("checked", "Tree", make_icon(checked_png)); theme->set_icon("unchecked", "Tree", make_icon(unchecked_png)); + theme->set_icon("indeterminate", "Tree", make_icon(indeterminate_png)); theme->set_icon("updown", "Tree", make_icon(updown_png)); theme->set_icon("select_arrow", "Tree", make_icon(dropdown_png)); theme->set_icon("arrow", "Tree", make_icon(arrow_down_png)); |