mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-21 20:59:11 +02:00
Compare commits
2 Commits
789606cf86
...
c97561add4
Author | SHA1 | Date | |
---|---|---|---|
c97561add4 | |||
d994fae4ce |
@ -272,7 +272,7 @@ bool OziMap::setTileInfo(const QStringList &tiles, const QString &path)
|
|||||||
for (int i = 0; i < tiles.size(); i++) {
|
for (int i = 0; i < tiles.size(); i++) {
|
||||||
const QString &tile = tiles.at(i);
|
const QString &tile = tiles.at(i);
|
||||||
|
|
||||||
if (tile.startsWith("set/") && tile.contains(rx)) {
|
if (tile.contains(rx)) {
|
||||||
_tile.path = QString(tile).replace(rx, "_%1_%2.");
|
_tile.path = QString(tile).replace(rx, "_%1_%2.");
|
||||||
|
|
||||||
if (_tar) {
|
if (_tar) {
|
||||||
@ -283,14 +283,12 @@ bool OziMap::setTileInfo(const QStringList &tiles, const QString &path)
|
|||||||
_tile.path = path + "/" + _tile.path;
|
_tile.path = path + "/" + _tile.path;
|
||||||
_tile.size = QImageReader(path + "/" + tile).size();
|
_tile.size = QImageReader(path + "/" + tile).size();
|
||||||
}
|
}
|
||||||
if (!_tile.size.isValid()) {
|
|
||||||
_errorString = QString("Error retrieving tile size: "
|
|
||||||
"%1: Invalid image").arg(QFileInfo(tile).fileName());
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
_map.path = QString();
|
if (_tile.size.isValid()) {
|
||||||
return true;
|
_map.path = QString();
|
||||||
|
return true;
|
||||||
|
} else
|
||||||
|
qWarning("%s: error reading tile image", qPrintable(tile));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user