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 0b9c945 commit ad23041Copy full SHA for ad23041
NextGrowingTextView/NextGrowingTextView.swift
@@ -406,7 +406,7 @@ final class PlatterTextView: UIScrollView {
406
if actualTextViewSize.height < state.resolvedMinHeight || !_textView.hasText {
407
containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMinHeight)
408
} else if state.resolvedMaxHeight > 0 && actualTextViewSize.height > state.resolvedMaxHeight {
409
- containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMinHeight)
+ containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMaxHeight)
410
} else {
411
containerSize = actualTextViewSize
412
}
0 commit comments