mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-03 16:09:08 +01:00
Fixed broken online map lists loading
This commit is contained in:
parent
c535632eb6
commit
06205470fe
@ -97,10 +97,17 @@ bool MapList::loadAtlas(const QString &path)
|
|||||||
|
|
||||||
bool MapList::loadFile(const QString &path, bool *atlas)
|
bool MapList::loadFile(const QString &path, bool *atlas)
|
||||||
{
|
{
|
||||||
|
QFileInfo fi(path);
|
||||||
|
QString suffix = fi.suffix().toLower();
|
||||||
|
|
||||||
if (Atlas::isAtlas(path)) {
|
if (Atlas::isAtlas(path)) {
|
||||||
if (atlas)
|
if (atlas)
|
||||||
*atlas = true;
|
*atlas = true;
|
||||||
return loadAtlas(path);
|
return loadAtlas(path);
|
||||||
|
} else if (suffix == "txt") {
|
||||||
|
if (atlas)
|
||||||
|
*atlas = false;
|
||||||
|
return loadList(path);
|
||||||
} else {
|
} else {
|
||||||
if (atlas)
|
if (atlas)
|
||||||
*atlas = false;
|
*atlas = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user