diff --git a/submodules/TelegramUI/Sources/ChatControllerNode.swift b/submodules/TelegramUI/Sources/ChatControllerNode.swift index 6e2da71ec8..95340c5df2 100644 --- a/submodules/TelegramUI/Sources/ChatControllerNode.swift +++ b/submodules/TelegramUI/Sources/ChatControllerNode.swift @@ -1732,7 +1732,7 @@ class ChatControllerNode: ASDisplayNode, UIScrollViewDelegate { if let inputNode = self.inputNode { extensionValue = inputNode.topBackgroundExtension } - let apparentInputBackgroundFrame = CGRect(origin: .zero, size: CGSize(width: apparentInputBackgroundFrame.width, height: apparentInputBackgroundFrame.height + extensionValue)) + let apparentInputBackgroundFrame = CGRect(origin: apparentInputBackgroundFrame.origin, size: CGSize(width: apparentInputBackgroundFrame.width, height: apparentInputBackgroundFrame.height + extensionValue)) var transition = transition var delay: Double = 0.0 if apparentInputBackgroundFrame.height > inputPanelBackgroundContent.frame.height { @@ -2271,12 +2271,12 @@ class ChatControllerNode: ASDisplayNode, UIScrollViewDelegate { navigationBarBackgroundContent.allowsGroupOpacity = true navigationBarBackgroundContent.implicitContentUpdate = false - navigationBarBackgroundContent.alpha = 0.2 + navigationBarBackgroundContent.alpha = 0.3 self.navigationBar?.insertSubnode(navigationBarBackgroundContent, at: 1) inputPanelBackgroundContent.allowsGroupOpacity = true inputPanelBackgroundContent.implicitContentUpdate = false - inputPanelBackgroundContent.alpha = 0.2 + inputPanelBackgroundContent.alpha = 0.3 self.inputPanelBackgroundNode.addSubnode(inputPanelBackgroundContent) } } diff --git a/submodules/TelegramUI/Sources/ChatHistoryNavigationButtonNode.swift b/submodules/TelegramUI/Sources/ChatHistoryNavigationButtonNode.swift index 47f5de3540..266645020b 100644 --- a/submodules/TelegramUI/Sources/ChatHistoryNavigationButtonNode.swift +++ b/submodules/TelegramUI/Sources/ChatHistoryNavigationButtonNode.swift @@ -130,7 +130,7 @@ class ChatHistoryNavigationButtonNode: ContextControllerSourceNode { if let backgroundContent = backgroundNode.makeBubbleBackground(for: .free) { backgroundContent.allowsGroupOpacity = true backgroundContent.clipsToBounds = true - backgroundContent.alpha = 0.2 + backgroundContent.alpha = 0.3 backgroundContent.cornerRadius = 19.0 backgroundContent.frame = self.backgroundNode.frame self.buttonNode.insertSubnode(backgroundContent, aboveSubnode: self.backgroundNode)