diff --git a/core/src/com/unciv/ui/mapeditor/MapEditorMenuPopup.kt b/core/src/com/unciv/ui/mapeditor/MapEditorMenuPopup.kt index b745adb36f..7514c1fff7 100644 --- a/core/src/com/unciv/ui/mapeditor/MapEditorMenuPopup.kt +++ b/core/src/com/unciv/ui/mapeditor/MapEditorMenuPopup.kt @@ -54,7 +54,8 @@ class MapEditorMenuPopup(mapEditorScreen: MapEditorScreen): Popup(mapEditorScree thread ( name = "SaveMap" ) { try { MapSaver.saveMap(mapEditorScreen.mapName, mapEditorScreen.tileMap) - UncivGame.Current.setWorldScreen() + close() + ResponsePopup("Map saved", mapEditorScreen) // todo - add this text to translations } catch (ex: Exception) { ex.printStackTrace() Gdx.app.postRunnable {