Fix gridmap error spam at startup
This commit is contained in:
parent
2906cef290
commit
51e5bcfc2c
1 changed files with 3 additions and 1 deletions
|
@ -353,7 +353,9 @@ void GridMapEditor::_set_selection(bool p_active, const Vector3 &p_begin, const
|
|||
selection.click = p_begin;
|
||||
selection.current = p_end;
|
||||
|
||||
_update_selection_transform();
|
||||
if (is_visible_in_tree()) {
|
||||
_update_selection_transform();
|
||||
}
|
||||
|
||||
options->get_popup()->set_item_disabled(options->get_popup()->get_item_index(MENU_OPTION_SELECTION_CLEAR), !selection.active);
|
||||
options->get_popup()->set_item_disabled(options->get_popup()->get_item_index(MENU_OPTION_SELECTION_CUT), !selection.active);
|
||||
|
|
Loading…
Reference in a new issue