From 91bc1f4546f470427abed3b24acc2e3e89ae9a98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Fri, 24 Sep 2021 19:49:15 +0200 Subject: [PATCH] Make it clear that only the selected map's cache will be dropped --- src/GUI/gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/gui.cpp b/src/GUI/gui.cpp index ec9b34cd..323477bb 100644 --- a/src/GUI/gui.cpp +++ b/src/GUI/gui.cpp @@ -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(); }