From 3ede2e2b075fe37b3bd7a5bbcd2890b299204b0d Mon Sep 17 00:00:00 2001 From: DYefremov Date: Fri, 29 Mar 2024 20:35:48 +0300 Subject: [PATCH] fix -> mark not present in bouquets (#197) --- app/ui/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ui/main.py b/app/ui/main.py index d057cabe..79453b14 100644 --- a/app/ui/main.py +++ b/app/ui/main.py @@ -4105,8 +4105,8 @@ class Application(Gtk.Application): for index, row in enumerate(self._services_model): fav_id = row[Column.SRV_FAV_ID] - if fav_id not in ids: - row[Column.SRV_BACKGROUND] = self._EXTRA_COLOR + bg = self.get_new_background(row[Column.SRV_CAS_FLAGS]) if fav_id in ids else self._EXTRA_COLOR + row[Column.SRV_BACKGROUND] = bg if index % self.FAV_FACTOR == 0: yield True