From 07809c162f90ae77c9cf6f0662dbb4b288f82a07 Mon Sep 17 00:00:00 2001 From: Niko Abeler Date: Sat, 12 Aug 2017 13:23:08 +0200 Subject: [PATCH] Showing anchor icon in editor if control-node is hidden (fixes #9542) --- editor/plugins/canvas_item_editor_plugin.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/editor/plugins/canvas_item_editor_plugin.cpp b/editor/plugins/canvas_item_editor_plugin.cpp index a35d7a9a503..c19f0ff4db5 100644 --- a/editor/plugins/canvas_item_editor_plugin.cpp +++ b/editor/plugins/canvas_item_editor_plugin.cpp @@ -2079,13 +2079,10 @@ void CanvasItemEditor::_notification(int p_what) { } } - bool show_anchor = all_control && has_control; - if (show_anchor != anchor_menu->is_visible()) { - if (show_anchor) - anchor_menu->show(); - else - anchor_menu->hide(); - } + if (all_control && has_control) + anchor_menu->show(); + else + anchor_menu->hide(); for (Map::Element *E = bone_list.front(); E; E = E->next()) {