Apply manual layout to quoted reply component.

This commit is contained in:
Matthew Chen 2021-04-07 16:23:25 -03:00
parent 5f6f7f784f
commit 39620bc15f

View File

@ -617,6 +617,13 @@ public struct ManualStackSubviewInfo: Equatable {
self.hasFixedHeight = hasFixedSize
}
private static func setSubviewFrame(subview: UIView, frame: CGRect) {
guard subview.frame != frame else {
return
}
subview.frame = frame
}
public init(measuredSize: CGSize, subview: UIView) {
self.measuredSize = measuredSize