From be195e900100b95128c3461cbc2eb46ec1914608 Mon Sep 17 00:00:00 2001 From: DYefremov Date: Sat, 20 Apr 2019 20:44:56 +0300 Subject: [PATCH] added epg icon --- app/ui/uicommons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/ui/uicommons.py b/app/ui/uicommons.py index c74b7322..faac3f18 100644 --- a/app/ui/uicommons.py +++ b/app/ui/uicommons.py @@ -24,7 +24,8 @@ LOCKED_ICON = theme.load_icon("changes-prevent-symbolic", 16, 0) if theme.lookup "system-lock-screen", 16, 0) else _IMAGE_MISSING HIDE_ICON = theme.load_icon("go-jump", 16, 0) if theme.lookup_icon("go-jump", 16, 0) else _IMAGE_MISSING TV_ICON = theme.load_icon("tv-symbolic", 16, 0) if theme.lookup_icon("tv-symbolic", 16, 0) else _IMAGE_MISSING -IPTV_ICON = theme.load_icon("emblem-shared", 16, 0) if theme.load_icon("emblem-shared", 16, 0) else None +IPTV_ICON = theme.load_icon("emblem-shared", 16, 0) if theme.lookup_icon("emblem-shared", 16, 0) else None +EPG_ICON = theme.load_icon("gtk-index", 16, 0) if theme.lookup_icon("gtk-index", 16, 0) else None # Colors NEW_COLOR = "rgb(255,230,204)" # Color for new services in the main list