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

Increased objects chache size

This commit is contained in:
Martin Tůma 2024-11-20 19:10:44 +01:00
parent e10c6547ac
commit cee20e2e9f

View File

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