diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-22 09:28:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 09:28:10 +0200 |
commit | 779426d2df8af5173e1f44a4c63fea863b57e461 (patch) | |
tree | d6d843b880945131f91ed9beb37a0e10c9b958aa /editor/plugins | |
parent | 15042128a69f301f9e88981ec5da9707d403106a (diff) | |
parent | 29d3ecf29a411552809ca95f82ff15a25ea5e420 (diff) |
Merge pull request #11477 from djrm/pr_visuals
Improved a lot of icons, and some style fixes
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/canvas_item_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index c58ccb55a8..c591bc733b 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -2595,12 +2595,12 @@ void CanvasItemEditor::_draw_locks_and_groups(Node *p_node, const Transform2D &p } if (ci) { - Ref<Texture> lock = get_icon("Lock", "EditorIcons"); + Ref<Texture> lock = get_icon("LockViewport", "EditorIcons"); if (p_node->has_meta("_edit_lock_")) { lock->draw(viewport_ci, transform_ci.xform(Point2(0, 0))); } - Ref<Texture> group = get_icon("Group", "EditorIcons"); + Ref<Texture> group = get_icon("GroupViewport", "EditorIcons"); if (ci->has_meta("_edit_group_")) { Vector2 ofs = transform_ci.xform(Point2(0, 0)); if (ci->has_meta("_edit_lock_")) |