Skip to content

Commit

Permalink
Fix round video panels width
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali committed Nov 6, 2023
1 parent 686f3c4 commit c77e800
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public class ChatMessageInteractiveInstantVideoNode: ASDisplayNode {
forwardAuthorSignature = forwardInfo.authorSignature
}
}
let availableWidth: CGFloat = max(60.0, availableContentWidth - 210.0 + 6.0)
let availableWidth: CGFloat = max(60.0, availableContentWidth - 220.0 + 6.0)
forwardInfoSizeApply = makeForwardInfoLayout(item.context, item.presentationData, item.presentationData.strings, .standalone, forwardSource, forwardAuthorSignature, forwardPsaType, nil, CGSize(width: availableWidth, height: CGFloat.greatestFiniteMagnitude))
}

Expand Down

0 comments on commit c77e800

Please sign in to comment.