diff --git a/SignalMessaging/Views/ManualStackView.swift b/SignalMessaging/Views/ManualStackView.swift index 9b8d6c4d8d..11f8205697 100644 --- a/SignalMessaging/Views/ManualStackView.swift +++ b/SignalMessaging/Views/ManualStackView.swift @@ -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