From a4f81f6ba1740d9673a7453c247fd9e76cd927c3 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Tue, 14 Jan 2025 23:24:11 +0800 Subject: [PATCH] :bug: Post auto warp --- lib/widgets/post/post_item.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/widgets/post/post_item.dart b/lib/widgets/post/post_item.dart index 60f42b0..137e14f 100644 --- a/lib/widgets/post/post_item.dart +++ b/lib/widgets/post/post_item.dart @@ -880,6 +880,7 @@ class _PostContentBody extends StatelessWidget { Widget build(BuildContext context) { if (data.body['content'] == null) return const SizedBox.shrink(); final content = MarkdownTextContent( + isAutoWarp: data.type == 'story', isEnlargeSticker: true, textScaler: isEnlarge ? TextScaler.linear(1.1) : null, content: data.body['content'],