From 3c04a002304b3cbdf1805df61b453d0f670f9a9c Mon Sep 17 00:00:00 2001 From: DYefremov Date: Wed, 8 Oct 2025 21:35:42 +0300 Subject: [PATCH] adjust getting yt icon --- app/ui/uicommons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/uicommons.py b/app/ui/uicommons.py index 93929bb8..397096ca 100644 --- a/app/ui/uicommons.py +++ b/app/ui/uicommons.py @@ -143,7 +143,7 @@ def get_yt_icon(icon_name, size=24): if n_theme.has_icon(icon_name): return n_theme.load_icon(icon_name, size, 0) - return default_theme.load_icon("emblem-important-symbolic", size, 0) + return get_icon("emblem-important-symbolic", size, LINK_ICON) def show_notification(message, timeout=10000, urgency=1):