diff --git a/Telegram-iOS/Resources/intro/telegram_sphere@2x.png b/Telegram-iOS/Resources/intro/telegram_sphere@2x.png index 85e805a00f..5048850c0b 100644 Binary files a/Telegram-iOS/Resources/intro/telegram_sphere@2x.png and b/Telegram-iOS/Resources/intro/telegram_sphere@2x.png differ diff --git a/submodules/RMIntro/Sources/platform/ios/Resources/telegram_sphere@2x.png b/submodules/RMIntro/Sources/platform/ios/Resources/telegram_sphere@2x.png index 85e805a00f..5048850c0b 100644 Binary files a/submodules/RMIntro/Sources/platform/ios/Resources/telegram_sphere@2x.png and b/submodules/RMIntro/Sources/platform/ios/Resources/telegram_sphere@2x.png differ diff --git a/submodules/TelegramUI/TelegramUI/ChatMessageAnimatedStickerItemNode.swift b/submodules/TelegramUI/TelegramUI/ChatMessageAnimatedStickerItemNode.swift index 032263ed4d..63526889be 100644 --- a/submodules/TelegramUI/TelegramUI/ChatMessageAnimatedStickerItemNode.swift +++ b/submodules/TelegramUI/TelegramUI/ChatMessageAnimatedStickerItemNode.swift @@ -388,7 +388,7 @@ class ChatMessageAnimatedStickerItemNode: ChatMessageItemView { layoutSize.height += actionButtonsSizeAndApply.0.height } - return (ListViewItemNodeLayout(contentSize: CGSize(width: params.width, height: contentHeight), insets: layoutInsets), { [weak self] animation, _ in + return (ListViewItemNodeLayout(contentSize: layoutSize, insets: layoutInsets), { [weak self] animation, _ in if let strongSelf = self { var transition: ContainedViewLayoutTransition = .immediate if case let .System(duration) = animation { diff --git a/submodules/TelegramUI/TelegramUI/ShareControllerPeerGridItem.swift b/submodules/TelegramUI/TelegramUI/ShareControllerPeerGridItem.swift index c150265493..dd4fc28f7f 100644 --- a/submodules/TelegramUI/TelegramUI/ShareControllerPeerGridItem.swift +++ b/submodules/TelegramUI/TelegramUI/ShareControllerPeerGridItem.swift @@ -46,7 +46,7 @@ final class ShareControllerGridSection: GridSection { } } -private let sectionTitleFont = Font.medium(12.0) +private let sectionTitleFont = Font.bold(13.0) final class ShareControllerGridSectionNode: ASDisplayNode { let backgroundNode: ASDisplayNode @@ -59,7 +59,7 @@ final class ShareControllerGridSectionNode: ASDisplayNode { self.titleNode = ASTextNode() self.titleNode.isUserInteractionEnabled = false - self.titleNode.attributedText = NSAttributedString(string: title.uppercased(), font: sectionTitleFont, textColor: theme.list.sectionHeaderTextColor) + self.titleNode.attributedText = NSAttributedString(string: title.uppercased(), font: sectionTitleFont, textColor: theme.chatList.sectionHeaderTextColor) self.titleNode.maximumNumberOfLines = 1 self.titleNode.truncationMode = .byTruncatingTail @@ -77,7 +77,7 @@ final class ShareControllerGridSectionNode: ASDisplayNode { self.backgroundNode.frame = CGRect(origin: CGPoint(x: 0.0, y: 0.0), size: CGSize(width: bounds.size.width, height: 27.0)) let titleSize = self.titleNode.measure(CGSize(width: bounds.size.width - 24.0, height: CGFloat.greatestFiniteMagnitude)) - self.titleNode.frame = CGRect(origin: CGPoint(x: 9.0, y: 7.0), size: titleSize) + self.titleNode.frame = CGRect(origin: CGPoint(x: 16.0, y: 6.0 + UIScreenPixel), size: titleSize) } }