viewer: improved display of multiline descriptions

This commit is contained in:
Thibault Deckers 2024-01-26 23:28:16 +01:00
parent 0b5e235053
commit baa318f0de

View file

@ -22,7 +22,7 @@ class OverlayRowExpander extends StatelessWidget {
textAlign: parent.textAlign,
softWrap: expanded,
overflow: parent.overflow,
maxLines: expanded ? null : 42,
maxLines: expanded ? 16 : 1,
textWidthBasis: parent.textWidthBasis,
child: child!,
);