The Trunk: SmallLand-ColorTheme-nice.5.mcz

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

The Trunk: SmallLand-ColorTheme-nice.5.mcz

commits-2
Nicolas Cellier uploaded a new version of SmallLand-ColorTheme to project The Trunk:
http://source.squeak.org/trunk/SmallLand-ColorTheme-nice.5.mcz

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

Name: SmallLand-ColorTheme-nice.5
Author: nice
Time: 25 December 2013, 11:29:31.632 pm
UUID: fecc0c3f-d3c5-47cd-981d-1f8bfd1db692
Ancestors: SmallLand-ColorTheme-nice.4

Change a few print:(aFloat roundTo: 0.01) into nextPutAll:(aFloat printShowingMaxDecimalPlaces: 2)
BIS, sorry for the noise.

=============== Diff against SmallLand-ColorTheme-nice.4 ===============

Item was changed:
  ----- Method: SmallLandColorTheme>>labelForColor: (in category 'private - colors') -----
  labelForColor: aColor
+ ^ (aColor red printShowingMaxDecimalPlaces: 2) , ' ' , (aColor green printShowingMaxDecimalPlaces: 2) , ' ' , (aColor blue printShowingMaxDecimalPlaces: 2)!
- ^ (aColor red printShowingMaxDecimalPlaces: 2) asString , ' ' , (aColor green printShowingMaxDecimalPlaces: 2) asString , ' ' , (aColor blue printShowingMaxDecimalPlaces: 2) asString!