1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-27 11:39:16 +02:00

Fixed map dir loading on Android

This commit is contained in:
2022-06-19 23:05:01 +02:00
parent 7118794b26
commit 23e8154a1f
2 changed files with 10 additions and 2 deletions

View File

@ -76,7 +76,7 @@ ToolTip MapItem::info() const
if (!_name.isEmpty())
tt.insert(tr("Name"), _name);
if (!_fileName.isEmpty())
tt.insert(tr("File"), _fileName);
tt.insert(tr("File"), Util::displayName(_fileName));
return tt;
}
@ -212,6 +212,10 @@ void MapItem::hoverEnterEvent(QGraphicsSceneHoverEvent *event)
_pen.setWidthF((_width + 1) * pow(2, -_digitalZoom));
update();
#ifdef Q_OS_ANDROID
Popup::show(event->screenPos(), info(), event->widget());
#endif // Q_OS_ANDROID
}
void MapItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)