Skip to content

Commit

Permalink
fix: long patch description truncated (#702)
Browse files Browse the repository at this point in the history
Increased max lines in the description to 4
  • Loading branch information
alexyuen authored Feb 14, 2023
1 parent 378c947 commit d01ba13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ui/widgets/patchesSelectorView/patch_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class _PatchItemState extends State<PatchItem> {
Text(
widget.description,
softWrap: true,
maxLines: 3,
maxLines: 4,
overflow: TextOverflow.visible,
style: TextStyle(
fontSize: 14,
Expand Down Expand Up @@ -201,4 +201,4 @@ class _PatchItemState extends State<PatchItem> {
),
);
}
}
}

0 comments on commit d01ba13

Please sign in to comment.