Fix gridmap error spam at startup

This commit is contained in:
Yuri Roubinsky 2019-10-22 18:13:37 +03:00
parent 2906cef290
commit 51e5bcfc2c

View file

@ -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);