1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-27 08:54:23 +02:00

Properly sort the Orux maps zoom levels

This commit is contained in:
2022-08-08 00:21:24 +02:00
parent a01ff33768
commit 7b8fff7440
2 changed files with 4 additions and 1 deletions

View File

@ -351,11 +351,12 @@ OruxMap::OruxMap(const QString &fileName, QObject *parent)
{
if (!readXML(fileName))
return;
if (_zooms.isEmpty()) {
_errorString = "No usable zoom level found";
return;
}
std::sort(_zooms.begin(), _zooms.end());
QFileInfo fi(fileName);
QDir dir(fi.absoluteDir());