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

@@ -13,8 +13,9 @@ public struct KeyShortcut: Hashable {
self.action = action
}
public var hashValue: Int {
return input.hashValue ^ modifiers.hashValue
public func hash(into hasher: inout Hasher) {
hasher.combine(self.input)
hasher.combine(self.modifiers)
}
public static func ==(lhs: KeyShortcut, rhs: KeyShortcut) -> Bool {