From 5f5d6acab847203ebb01222b4ba0f5565adfe07c Mon Sep 17 00:00:00 2001 From: Ali <> Date: Fri, 24 Mar 2023 13:38:28 +0400 Subject: [PATCH] Fix ChatReplyCountItem background --- submodules/TelegramUI/Sources/ChatReplyCountItem.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/TelegramUI/Sources/ChatReplyCountItem.swift b/submodules/TelegramUI/Sources/ChatReplyCountItem.swift index ec4627f166..c8e722a973 100644 --- a/submodules/TelegramUI/Sources/ChatReplyCountItem.swift +++ b/submodules/TelegramUI/Sources/ChatReplyCountItem.swift @@ -162,7 +162,7 @@ class ChatReplyCountItemNode: ListViewItemNode { if strongSelf.backgroundNode == nil { if let backgroundNode = item.controllerInteraction.presentationContext.backgroundNode?.makeBubbleBackground(for: .free) { strongSelf.backgroundNode = backgroundNode - backgroundNode.addSubnode(strongSelf.backgroundColorNode) + //backgroundNode.addSubnode(strongSelf.backgroundColorNode) strongSelf.insertSubnode(backgroundNode, at: 0) } }