Do not set copyable back to true on reuse

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
This commit is contained in:
Jason A. Donenfeld 2018-12-22 01:31:59 +01:00
parent 4ed646973e
commit c1c5f7a7c7
1 changed files with 5 additions and 0 deletions

View File

@ -40,4 +40,9 @@ class TunnelEditEditableKeyValueCell: TunnelEditKeyValueCell {
fatalError("init(coder:) has not been implemented")
}
override func prepareForReuse() {
super.prepareForReuse()
copyableGesture = false
}
}