From 6ccbaed3fd1eb9c02d7a4e189a559b92b0095d27 Mon Sep 17 00:00:00 2001 From: edde746 <86283021+edde746@users.noreply.github.com> Date: Fri, 13 Mar 2026 18:20:26 +0100 Subject: [PATCH] fix(livetv): always bold EPG program titles in guide grid close #687 --- lib/screens/livetv/tabs/guide_tab.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/livetv/tabs/guide_tab.dart b/lib/screens/livetv/tabs/guide_tab.dart index ed654a85..8342063d 100644 --- a/lib/screens/livetv/tabs/guide_tab.dart +++ b/lib/screens/livetv/tabs/guide_tab.dart @@ -1049,8 +1049,8 @@ class GuideTabState extends State { children: [ Text( program.grandparentTitle ?? program.title, - style: theme.textTheme.bodySmall?.copyWith( - fontWeight: isCurrentlyAiring ? FontWeight.w600 : FontWeight.normal, + style: theme.textTheme.bodyMedium?.copyWith( + fontWeight: FontWeight.w600, color: titleColor, ), maxLines: 1,