From 2285211100d5aa314ae8f71a4690095ea14bee00 Mon Sep 17 00:00:00 2001 From: DYefremov Date: Thu, 1 Jun 2023 22:16:47 +0300 Subject: [PATCH] minor fix for picons download --- app/ui/picons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/ui/picons.py b/app/ui/picons.py index bb92de08..d0bdbc00 100644 --- a/app/ui/picons.py +++ b/app/ui/picons.py @@ -202,7 +202,7 @@ class PiconManager(Gtk.Box): if not len(self._picon_ids) and self._s_type is SettingsType.ENIGMA_2: message = translate("To automatically set the identifiers for picons,\n" - "first load the required services list into the main application window.") + "first load the required services list into the main application window.") self.show_info_message(message, Gtk.MessageType.WARNING) self._satellite_label.show() @@ -540,6 +540,7 @@ class PiconManager(Gtk.Box): def on_download(self, app, page): if page is Page.PICONS: + self._app.picons.clear() self.on_picons_download() def on_picons_download(self, item=None, files_filter=None, path=None):