chore: give activity goal tooltip max width (#4179)
This commit is contained in:
parent
1605624006
commit
b5558905d8
1 changed files with 7 additions and 2 deletions
|
|
@ -57,8 +57,13 @@ class ChatInputBarState extends State<ChatInputBar> {
|
|||
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(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue