Do not set copyable back to true on reuse

This commit is contained in:
Jason A. Donenfeld 2018-12-22 01:31:59 +01:00
parent e1c3d9b57a
commit bfb0eb5dae

View File

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