mirror of
https://github.com/godotengine/godot.git
synced 2024-12-01 00:22:37 +00:00
Merge pull request #69842 from timothyqiu/tile-set-update
Fix !tile_set.is_valid() error on startup
This commit is contained in:
commit
cc5d2c68a8
@ -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