We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 027e2fe commit ac3457dCopy full SHA for ac3457d
packages/ui-canvas/platforms/android/java/com/akylas/canvas/StaticLayout.java
@@ -66,7 +66,7 @@ public static android.text.StaticLayout createEllipsizeStaticLayout(android.text
66
int i = 0;
67
float lineHeight = staticLayout.getLineBottom(i) - staticLayout.getLineTop(i);
68
float totalHeight = lineHeight * lineCount;
69
- if (maxLines > 1) {
+ if (maxHeight > 0 && maxLines > 1) {
70
while (totalHeight > maxHeight && maxLines > 1) {
71
maxLines--;
72
i++;
0 commit comments