[squeak-dev] The Trunk: Graphics-mt.537.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jan 16 11:43:55 UTC 2023


Marcel Taeumel uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-mt.537.mcz

==================== Summary ====================

Name: Graphics-mt.537
Author: mt
Time: 16 January 2023, 12:43:54.365631 pm
UUID: 7301ba56-82c1-9c4b-9ab3-1f58e5eb1e1c
Ancestors: Graphics-nice.536

Fixes utility method #blackCopyOf:scaledBy: for cursors with masks. That method is used for scaling/magnification.

=============== Diff against Graphics-nice.536 ===============

Item was added:
+ ----- Method: CursorWithMask>>blankCopyOf:scaledBy: (in category 'copying') -----
+ blankCopyOf: aRectangle scaledBy: scale
+ 	"Drop the mask for scaling."
+ 	
+ 	^ CursorWithAlpha
+ 		extent: (aRectangle extent * scale) truncated
+ 		depth: 32!



More information about the Squeak-dev mailing list