Skip to content

Commit

Permalink
Merge pull request #1352 from nextcloud/fix/neon_framework/progress-i…
Browse files Browse the repository at this point in the history
…ndicator-jumping
  • Loading branch information
provokateurin authored Dec 24, 2023
2 parents c4b0bff + aae7999 commit 8b6c4a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class NeonLinearProgressIndicator extends StatelessWidget {
@override
Widget build(final BuildContext context) => Container(
margin: margin,
constraints: BoxConstraints.loose(const Size.fromHeight(3)),
constraints: BoxConstraints.tight(const Size.fromHeight(3)),
child: visible
? LinearProgressIndicator(
color: color,
Expand Down

0 comments on commit 8b6c4a3

Please sign in to comment.