From 4ffecb9ce49e01a6a9409e501cc6be95bab95aa6 Mon Sep 17 00:00:00 2001 From: DYefremov Date: Fri, 22 Sep 2023 16:47:06 +0300 Subject: [PATCH] skip getting picon for the marker --- app/ui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/main.py b/app/ui/main.py index 08eda898..31024865 100644 --- a/app/ui/main.py +++ b/app/ui/main.py @@ -1191,7 +1191,7 @@ class Application(Gtk.Application): def fav_picon_data_func(self, column, renderer, model, itr, data): srv = self._services.get(model.get_value(itr, Column.FAV_ID), None) - if not srv: + if not srv or not srv.service: return True picon = self.get_picon_pixbuf(srv.picon_id, srv.service)