Merge pull request #32991 from Chaosus/fix_bug2

Fix gridmap error spam at startup
This commit is contained in:
Rémi Verschelde 2019-10-22 20:38:14 +02:00 committed by GitHub
commit 4952e19ad0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -350,7 +350,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);