diff --git a/submodules/StickerPackPreviewUI/Sources/StickerPackPreviewControllerNode.swift b/submodules/StickerPackPreviewUI/Sources/StickerPackPreviewControllerNode.swift index 025ec2168c..f54bd56d20 100644 --- a/submodules/StickerPackPreviewUI/Sources/StickerPackPreviewControllerNode.swift +++ b/submodules/StickerPackPreviewUI/Sources/StickerPackPreviewControllerNode.swift @@ -583,12 +583,18 @@ final class StickerPackPreviewControllerNode: ViewControllerTracingNode, UIScrol switch stickerPack { case .none, .fetching: self.installActionSeparatorNode.alpha = 0.0 + self.shareActionSeparatorNode.alpha = 0.0 + self.shareActionButtonNode.alpha = 0.0 + self.installActionButtonNode.alpha = 0.0 self.installActionButtonNode.setTitle("", with: Font.medium(20.0), with: self.presentationData.theme.actionSheet.standardActionTextColor, for: .normal) case let .result(info, _, installed): if self.stickerPackInitiallyInstalled == nil { self.stickerPackInitiallyInstalled = installed } self.installActionSeparatorNode.alpha = 1.0 + self.shareActionSeparatorNode.alpha = 1.0 + self.shareActionButtonNode.alpha = 1.0 + self.installActionButtonNode.alpha = 1.0 if installed { let text: String if info.id.namespace == Namespaces.ItemCollection.CloudStickerPacks {