Bloc icon indicating copy to clipboard operation
Bloc copied to clipboard

BUG - Wrong hash method for BlCornerRadii

Open Nyan11 opened this issue 1 year ago • 1 comments

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))

Nyan11 avatar Dec 15 '23 07:12 Nyan11

Absolutely! thanks

tinchodias avatar Dec 24 '23 02:12 tinchodias