You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when reaching max line, the textview changed its height to min line height.
In NextGroingTextView.swift, line 409: containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMinHeight)
should be containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMaxHeight)
The text was updated successfully, but these errors were encountered:
when reaching max line, the textview changed its height to min line height.
In NextGroingTextView.swift, line 409:
containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMinHeight)
should be
containerSize = CGSize(width: actualTextViewSize.width, height: state.resolvedMaxHeight)
The text was updated successfully, but these errors were encountered: