diff --git a/submodules/BotPaymentsUI/Sources/BotCheckoutInfoControllerNode.swift b/submodules/BotPaymentsUI/Sources/BotCheckoutInfoControllerNode.swift index 468baa7f91..677ed8d142 100644 --- a/submodules/BotPaymentsUI/Sources/BotCheckoutInfoControllerNode.swift +++ b/submodules/BotPaymentsUI/Sources/BotCheckoutInfoControllerNode.swift @@ -560,6 +560,9 @@ final class BotCheckoutInfoControllerNode: ViewControllerTracingNode, UIScrollVi } func scrollViewDidScroll(_ scrollView: UIScrollView) { + guard !self.scrollNode.view.ignoreUpdateBounds else { + return + } let value = scrollView.contentOffset.y + scrollView.contentInset.top self.navigationBar?.updateBackgroundAlpha(min(30.0, value) / 30.0, transition: .immediate) } diff --git a/submodules/BotPaymentsUI/Sources/BotCheckoutNativeCardEntryControllerNode.swift b/submodules/BotPaymentsUI/Sources/BotCheckoutNativeCardEntryControllerNode.swift index 14670314ae..752e4bd0b7 100644 --- a/submodules/BotPaymentsUI/Sources/BotCheckoutNativeCardEntryControllerNode.swift +++ b/submodules/BotPaymentsUI/Sources/BotCheckoutNativeCardEntryControllerNode.swift @@ -549,6 +549,9 @@ final class BotCheckoutNativeCardEntryControllerNode: ViewControllerTracingNode, } func scrollViewDidScroll(_ scrollView: UIScrollView) { + guard !self.scrollNode.view.ignoreUpdateBounds else { + return + } let value = scrollView.contentOffset.y + scrollView.contentInset.top self.navigationBar?.updateBackgroundAlpha(min(30.0, value) / 30.0, transition: .immediate) } diff --git a/submodules/SettingsUI/Sources/Privacy and Security/Recent Sessions/ItemListRecentSessionItem.swift b/submodules/SettingsUI/Sources/Privacy and Security/Recent Sessions/ItemListRecentSessionItem.swift index 83644d0d2b..c6b3e16eea 100644 --- a/submodules/SettingsUI/Sources/Privacy and Security/Recent Sessions/ItemListRecentSessionItem.swift +++ b/submodules/SettingsUI/Sources/Privacy and Security/Recent Sessions/ItemListRecentSessionItem.swift @@ -139,7 +139,7 @@ func iconForSession(_ session: RecentAccountSession) -> (UIImage?, String?) { return (UIImage(bundleImageName: "Settings/Devices/Android"), "device_android") } if device.contains("iphone") { - return (UIImage(bundleImageName: "Settings/Devices/iPhone"), nil) + return (UIImage(bundleImageName: "Settings/Devices/iPhone"), "device_iphone") } if device.contains("ipad") { return (UIImage(bundleImageName: "Settings/Devices/iPad"), nil)