The Trunk: Graphics-fbs.217.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Graphics-fbs.217.mcz

commits-2
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!