Bloc
Bloc copied to clipboard
BUG - Wrong hash method for BlCornerRadii
Hello,
There is a little bug about how the hash method for BlCornerRadii.
current:
"comparing"
hash
^ bottomLeft hash bitXor:
(bottomRight hash bitXor: (topLeft hash bitXor: topLeft))
proposed:
"comparing"
hash
^ bottomLeft hash bitXor:
(bottomRight hash bitXor: (topLeft hash bitXor: topRight hash))
Absolutely! thanks