--- a/eric6/PluginManager/PluginRepositoryDialog.py Mon Jan 04 16:39:09 2021 +0100 +++ b/eric6/PluginManager/PluginRepositoryDialog.py Mon Jan 04 16:39:37 2021 +0100 @@ -346,7 +346,7 @@ ui = e5App().getObject("UserInterface") else: ui = None - if ui and ui.notificationsEnabled(): + if ui is not None: ui.showNotification( UI.PixmapCache.getPixmap("plugin48"), self.tr("Download Plugin Files"), @@ -355,11 +355,12 @@ if self.__isDownloadInstall: self.closeAndInstall.emit() else: - if ui is None or not ui.notificationsEnabled(): + if ui is None: E5MessageBox.information( self, self.tr("Download Plugin Files"), self.tr("""The requested plugins were downloaded.""")) + self.downloadProgress.setValue(0) # repopulate the list to update the refresh icons