From bd2530ce4325d774d2f2676f8d39fe01a9bf2a6b Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Tue, 24 Feb 2026 16:26:08 -0500 Subject: [PATCH] chore: remove text shadow in wallpaper mode (#5805) --- lib/pages/chat/events/message.dart | 34 ++++++++++++++++-------------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/lib/pages/chat/events/message.dart b/lib/pages/chat/events/message.dart index dd48447b7..3e561e9da 100644 --- a/lib/pages/chat/events/message.dart +++ b/lib/pages/chat/events/message.dart @@ -563,22 +563,24 @@ class Message extends StatelessWidget { .color : displayname .lightColorText), - shadows: - !wallpaperMode - ? null - : [ - const Shadow( - offset: - Offset( - 0.0, - 0.0, - ), - blurRadius: - 3, - color: Colors - .black, - ), - ], + // #Pangea + // shadows: + // !wallpaperMode + // ? null + // : [ + // const Shadow( + // offset: + // Offset( + // 0.0, + // 0.0, + // ), + // blurRadius: + // 3, + // color: Colors + // .black, + // ), + // ], + // Pangea# ), maxLines: 1, overflow: TextOverflow