Merge pull request #53672 from groud/fix_set_source_id

This commit is contained in:
Rémi Verschelde 2021-10-11 16:18:58 +02:00 committed by GitHub
commit 91e681fe19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,6 +171,8 @@ void TileSet::set_source_id(int p_source_id, int p_new_source_id) {
source_ids.append(p_new_source_id);
source_ids.sort();
_compute_next_source_id();
emit_changed();
}