Fix !tile_set.is_valid() error on startup
This commit is contained in:
parent
ae86d907e7
commit
8a22d4cd44
@ -120,7 +120,9 @@ bool TileSetEditor::_can_drop_data_fw(const Point2 &p_point, const Variant &p_da
|
||||
}
|
||||
|
||||
void TileSetEditor::_update_sources_list(int force_selected_id) {
|
||||
ERR_FAIL_COND(!tile_set.is_valid());
|
||||
if (tile_set.is_null()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Get the previously selected id.
|
||||
int old_selected = TileSet::INVALID_SOURCE;
|
||||
|
Loading…
Reference in New Issue
Block a user