dolphinsmalltalk / Dolphin

Dolphin Smalltalk Core Image
MIT License
301 stars 58 forks source link

Fix extraneous horizontal scroll bar in ListView with a large number of items (fixes #1066) #1068

Closed daniels220 closed 3 years ago

daniels220 commented 3 years ago

Compute the required height for the control, and therefore whether it will have a vertical scrollbar, using a method that will not overflow if the required height exceeds 32768 (2**15). Also change guard condition to isClientAreaChanged rather than isRectangleChanged—changes to edge styles should cause a re-layout, while simple moves don't need to.