diff options
author | Nick Huelin <62965063+SirQuartz@users.noreply.github.com> | 2021-07-20 15:31:36 -0400 |
---|---|---|
committer | Nick H <62965063+SirQuartz@users.noreply.github.com> | 2021-07-20 17:23:42 -0400 |
commit | e50ab50169170b21837c7f44361368a2e3c48928 (patch) | |
tree | 3288d701ae975f4be662eb0b65e4c2eea067a33e /editor/property_selector.cpp | |
parent | 3478690c0fd67efc4f269c08dc7093c04fbf86db (diff) | |
download | redot-engine-e50ab50169170b21837c7f44361368a2e3c48928.tar.gz |
Fix visual script icons
This pull request fixes an issue where the visual script icons weren't representative of their data.
Diffstat (limited to 'editor/property_selector.cpp')
-rw-r--r-- | editor/property_selector.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/property_selector.cpp b/editor/property_selector.cpp index e4e372a19c..d26fc6ad9d 100644 --- a/editor/property_selector.cpp +++ b/editor/property_selector.cpp @@ -137,6 +137,7 @@ void PropertySelector::_update_search() { search_options->get_theme_icon(SNAME("Basis"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("Transform3D"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("Color"), SNAME("EditorIcons")), + search_options->get_theme_icon(SNAME("StringName"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("NodePath"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("RID"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("MiniObject"), SNAME("EditorIcons")), @@ -146,7 +147,9 @@ void PropertySelector::_update_search() { search_options->get_theme_icon(SNAME("Array"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedByteArray"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedInt32Array"), SNAME("EditorIcons")), + search_options->get_theme_icon(SNAME("PackedInt64Array"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedFloat32Array"), SNAME("EditorIcons")), + search_options->get_theme_icon(SNAME("PackedFloat64Array"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedStringArray"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedVector2Array"), SNAME("EditorIcons")), search_options->get_theme_icon(SNAME("PackedVector3Array"), SNAME("EditorIcons")), |