Update comment decryption UI

This commit is contained in:
Ali
2020-03-25 17:59:03 +04:00
parent 44b57ffcce
commit 5d55b67c3a
171 changed files with 5267 additions and 1448 deletions

View File

@@ -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
}