i18n/feature/simple-arch #169

Merged
hugo merged 3 commits from i18n/feature/simple-arch into master 2023-03-31 15:30:55 +00:00
Showing only changes of commit dbe8554eb7 - Show all commits

View File

@ -87,13 +87,10 @@ class RichTextBuilder extends RichTextBuilderComponent
); );
}, },
); );
return Text.rich(
return SelectionArea( TextSpan(children: [root.toInlineSpan(customParser)]),
child: Text.rich( textHeightBehavior:
TextSpan(children: [root.toInlineSpan(customParser)]), const TextHeightBehavior(applyHeightToLastDescent: false),
textHeightBehavior:
const TextHeightBehavior(applyHeightToLastDescent: false),
),
); );
} }
} }