1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-03-13 18:47:45 +01:00

Fixed microoptimization

This commit is contained in:
Martin Tůma 2025-03-08 03:32:05 +01:00
parent db6e891c30
commit 8ea84c5c86

View File

@ -418,7 +418,7 @@ QList<RasterTile::Level> RasterTile::fetchLevels()
if (!level.isNull()) if (!level.isNull())
list.append(level); list.append(level);
if (_data.size() > 0 && shape(level.polygons).contains(_rect)) if (_data.size() > 1 && shape(level.polygons).contains(_rect))
break; break;
} }