From 97e9f914c7e239dec8fd160a374a5d5d23673601 Mon Sep 17 00:00:00 2001 From: livinglist Date: Wed, 1 Apr 2026 16:19:46 -0700 Subject: [PATCH] fix: indent line fade in anim --- lib/screens/item/widgets/item_screen_background.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/screens/item/widgets/item_screen_background.dart b/lib/screens/item/widgets/item_screen_background.dart index 3fa22feb..6ba211b9 100644 --- a/lib/screens/item/widgets/item_screen_background.dart +++ b/lib/screens/item/widgets/item_screen_background.dart @@ -77,13 +77,13 @@ class _ItemScreenBackgroundState extends State { previous.maxLevel != current.maxLevel || previous.status != current.status, builder: (BuildContext context, CommentsState state) { - if (!_isVisible || state.status == CommentsStatus.inProgress) { + if (!_isVisible || state.comments.isEmpty) { return const SizedBox.shrink(); } return FadeIn( child: Stack( children: [ - if (widget.shouldShowRootLevelLine && state.comments.isNotEmpty) + if (widget.shouldShowRootLevelLine) Padding( padding: EdgeInsets.zero, child: SizedBox(