From 6b589a6e2fe7fb4b94d5efe0c72e6c103235b43c Mon Sep 17 00:00:00 2001 From: Ilya Laktyushin Date: Thu, 2 Dec 2021 00:44:21 +0400 Subject: [PATCH] Fix localization list top overscroll background --- .../Language Selection/LocalizationListControllerNode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/SettingsUI/Sources/Language Selection/LocalizationListControllerNode.swift b/submodules/SettingsUI/Sources/Language Selection/LocalizationListControllerNode.swift index decd4d028a..909cb6c91b 100644 --- a/submodules/SettingsUI/Sources/Language Selection/LocalizationListControllerNode.swift +++ b/submodules/SettingsUI/Sources/Language Selection/LocalizationListControllerNode.swift @@ -444,7 +444,7 @@ final class LocalizationListControllerNode: ViewControllerTracingNode { self.presentationData = presentationData self.presentationDataValue.set(.single(presentationData)) self.backgroundColor = presentationData.theme.list.blocksBackgroundColor - self.listNode.keepTopItemOverscrollBackground = ListViewKeepTopItemOverscrollBackground(color: presentationData.theme.chatList.backgroundColor, direction: true) + self.listNode.keepTopItemOverscrollBackground = ListViewKeepTopItemOverscrollBackground(color: presentationData.theme.list.blocksBackgroundColor, direction: true) self.searchDisplayController?.updatePresentationData(presentationData) self.leftOverlayNode.backgroundColor = presentationData.theme.list.blocksBackgroundColor self.rightOverlayNode.backgroundColor = presentationData.theme.list.blocksBackgroundColor