diff options
Diffstat (limited to 'editor/plugins/texture_3d_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/texture_3d_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/texture_3d_editor_plugin.cpp b/editor/plugins/texture_3d_editor_plugin.cpp index 2702e94188..1b5c2dcab1 100644 --- a/editor/plugins/texture_3d_editor_plugin.cpp +++ b/editor/plugins/texture_3d_editor_plugin.cpp @@ -43,7 +43,7 @@ void Texture3DEditor::_notification(int p_what) { } break; case NOTIFICATION_DRAW: { - Ref<Texture2D> checkerboard = get_theme_icon(SNAME("Checkerboard"), SNAME("EditorIcons")); + Ref<Texture2D> checkerboard = get_editor_theme_icon(SNAME("Checkerboard")); Size2 size = get_size(); draw_texture_rect(checkerboard, Rect2(Point2(), size), true); |