diff --git a/gui/wxpython/startup/locdownload.py b/gui/wxpython/startup/locdownload.py index 7a3f2e77eeb..8e0fff904f1 100644 --- a/gui/wxpython/startup/locdownload.py +++ b/gui/wxpython/startup/locdownload.py @@ -405,7 +405,7 @@ def download_complete_callback(event): self._warning( _( "Download completed. The downloaded sample data is listed " - "in the location/mapset tabs upon closing of this window" + "in the location/mapset tree." ) ) self.parent.newLocationIsDownloaded.emit() @@ -413,7 +413,8 @@ def download_complete_callback(event): dict(zip(("addBtn", "removeBtn"), (False, True))), ) self._change_download_btn_label() - self.parent.Show(True) + if errors: + self.parent.Show(True) self._download_in_progress = True self._warning(_("Download in progress, wait until it is finished"))