Skip to content

Commit 23dc73b

Browse files
committed
Fix: View is also complete when 'tilesChanged'
- it means that new tiles were available for rendering
1 parent 98ca1fc commit 23dc73b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/map.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ bool Map::update(float _dt) {
458458
bool tilesLoading = impl->tileManager.hasLoadingTiles();
459459
bool labelsNeedUpdate = impl->labels.needUpdate();
460460

461-
if (viewChanged || tilesChanged || tilesLoading || labelsNeedUpdate || impl->sceneLoadTasks > 0) {
461+
if (viewChanged || tilesLoading || labelsNeedUpdate || impl->sceneLoadTasks > 0) {
462462
viewComplete = false;
463463
}
464464

0 commit comments

Comments
 (0)