1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-23 19:25:54 +01:00

Increase the vector tile caches size

This commit is contained in:
Martin Tůma 2024-11-22 21:18:34 +01:00
parent 85fd574b38
commit a086c13648

View File

@ -435,8 +435,8 @@ MapData::MapData(const QString &fileName)
if (!readHeader(file))
return;
_pathCache.setMaxCost(1024);
_pointCache.setMaxCost(1024);
_pathCache.setMaxCost(2048);
_pointCache.setMaxCost(2048);
_valid = true;
}