[squeak-dev] The Trunk: Graphics-fbs.217.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jul 11 19:46:11 UTC 2013


Frank Shearar uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-fbs.217.mcz

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

Name: Graphics-fbs.217
Author: fbs
Time: 11 July 2013, 8:45:29.064 pm
UUID: f298a15a-14c4-c64b-9169-dc4f5cf19726
Ancestors: Graphics-fbs.216

Fix a nasty bug in Graphics-fbs.216, where Cursor >> #show used the deprecated (hence not present in base Trunk image) Sensor >> #currentCursor:, and broke your image.

=============== Diff against Graphics-fbs.216 ===============

Item was changed:
  ----- Method: Cursor>>show (in category 'displaying') -----
  show
  	"Make the hardware's mouse cursor look like the receiver"
  
+ 	Cursor currentCursor: self!
- 	Sensor currentCursor: self!

Item was changed:
  ----- Method: Cursor>>showGridded: (in category 'displaying') -----
  showGridded: gridPoint 
  	"Make the current cursor shape be the receiver, forcing the location of the cursor to the point nearest gridPoint."
  	
  	Sensor cursorPoint: (Sensor cursorPoint grid: gridPoint).
+ 	Cursor currentCursor: self!
- 	Sensor currentCursor: self!



More information about the Squeak-dev mailing list