1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 03:35:53 +01:00

Make it clear that only the selected map's cache will be dropped

This commit is contained in:
Martin Tůma 2021-09-24 19:49:15 +02:00
parent 28a71cbc39
commit 91bc1f4546

View File

@ -1705,7 +1705,7 @@ void GUI::loadMapDir()
void GUI::clearMapCache()
{
if (QMessageBox::question(this, APP_NAME,
tr("Clear the map tile cache?")) == QMessageBox::Yes)
tr("Clear \"%1\" tile cache?").arg(_map->name())) == QMessageBox::Yes)
_mapView->clearMapCache();
}