mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Update comment decryption UI
This commit is contained in:
@@ -179,13 +179,13 @@ private struct WrappedGridSection: Equatable, Hashable {
|
||||
self.section = section
|
||||
}
|
||||
|
||||
var hashValue: Int {
|
||||
return self.section.hashValue
|
||||
}
|
||||
|
||||
static func ==(lhs: WrappedGridSection, rhs: WrappedGridSection) -> Bool {
|
||||
return lhs.section.isEqual(to: rhs.section)
|
||||
}
|
||||
|
||||
func hash(into hasher: inout Hasher) {
|
||||
hasher.combine(self.section.hashValue)
|
||||
}
|
||||
}
|
||||
|
||||
public struct GridNodeVisibleItems {
|
||||
@@ -200,10 +200,6 @@ public struct GridNodeVisibleItems {
|
||||
private struct WrappedGridItemNode: Hashable {
|
||||
let node: ASDisplayNode
|
||||
|
||||
var hashValue: Int {
|
||||
return node.hashValue
|
||||
}
|
||||
|
||||
static func ==(lhs: WrappedGridItemNode, rhs: WrappedGridItemNode) -> Bool {
|
||||
return lhs.node === rhs.node
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user