From b5558905d83d4d5bb1cddcca28c7526594662ae2 Mon Sep 17 00:00:00 2001 From: ggurdin <46800240+ggurdin@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:19:30 -0400 Subject: [PATCH] chore: give activity goal tooltip max width (#4179) --- lib/pangea/chat/widgets/chat_input_bar.dart | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/pangea/chat/widgets/chat_input_bar.dart b/lib/pangea/chat/widgets/chat_input_bar.dart index 11dc6d7dc..fbc0b0735 100644 --- a/lib/pangea/chat/widgets/chat_input_bar.dart +++ b/lib/pangea/chat/widgets/chat_input_bar.dart @@ -57,8 +57,13 @@ class ChatInputBarState extends State { child: SizeChangedLayoutNotifier( child: Column( children: [ - ActivityRoleTooltip( - choreographer: widget.controller.choreographer, + ConstrainedBox( + constraints: const BoxConstraints( + maxWidth: FluffyThemes.maxTimelineWidth, + ), + child: ActivityRoleTooltip( + choreographer: widget.controller.choreographer, + ), ), Container( padding: EdgeInsets.only(