diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-06-15 16:50:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 16:50:52 +0200 |
commit | fed31b1827bf46c28852bb14757142becf9ba444 (patch) | |
tree | c745c20f076c4f5c299ab5634ade43e55fe63096 /modules/visual_script/visual_script_editor.cpp | |
parent | 7a85e95a4b699960c540bb583cec526ab1b034d8 (diff) | |
parent | 2161fd117b15ea72dcde8130bf0390b50599e34c (diff) |
Merge pull request #49616 from BastiaanOlij/more_rename_transform
Adding some more missing renames for Transform3D and Quaternion
Diffstat (limited to 'modules/visual_script/visual_script_editor.cpp')
-rw-r--r-- | modules/visual_script/visual_script_editor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/visual_script/visual_script_editor.cpp b/modules/visual_script/visual_script_editor.cpp index f5a365f199..96f103f95a 100644 --- a/modules/visual_script/visual_script_editor.cpp +++ b/modules/visual_script/visual_script_editor.cpp @@ -627,7 +627,7 @@ void VisualScriptEditor::_update_graph(int p_only_id) { Control::get_theme_icon("Quaternion", "EditorIcons"), Control::get_theme_icon("AABB", "EditorIcons"), Control::get_theme_icon("Basis", "EditorIcons"), - Control::get_theme_icon("Transform", "EditorIcons"), + Control::get_theme_icon("Transform3D", "EditorIcons"), Control::get_theme_icon("Color", "EditorIcons"), Control::get_theme_icon("NodePath", "EditorIcons"), Control::get_theme_icon("RID", "EditorIcons"), @@ -1078,7 +1078,7 @@ void VisualScriptEditor::_update_members() { Control::get_theme_icon("Quaternion", "EditorIcons"), Control::get_theme_icon("AABB", "EditorIcons"), Control::get_theme_icon("Basis", "EditorIcons"), - Control::get_theme_icon("Transform", "EditorIcons"), + Control::get_theme_icon("Transform3D", "EditorIcons"), Control::get_theme_icon("Color", "EditorIcons"), Control::get_theme_icon("NodePath", "EditorIcons"), Control::get_theme_icon("RID", "EditorIcons"), |