The Trunk: Nebraska-mt.43.mcz

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

The Trunk: Nebraska-mt.43.mcz

commits-2
Marcel Taeumel uploaded a new version of Nebraska to project The Trunk:
http://source.squeak.org/trunk/Nebraska-mt.43.mcz

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

Name: Nebraska-mt.43
Author: mt
Time: 24 August 2016, 9:23:19.115086 am
UUID: 21a6c68d-b9a1-4c41-8901-120a7494c5ed
Ancestors: Nebraska-mt.42

Reduced use of deprecated API.

=============== Diff against Nebraska-mt.42 ===============

Item was changed:
  ----- Method: NebraskaServerMorph>>setColorsAndBorder (in category 'initialization') -----
  setColorsAndBorder
  | worldColor c |
  c := ((Preferences menuColorFromWorld and: [Display depth > 4])
  and: [(worldColor := self currentWorld color) isColor])
  ifTrue:
  [worldColor luminance > 0.7
  ifTrue: [worldColor mixed: 0.8 with: Color black]
  ifFalse: [worldColor mixed: 0.4 with: Color white]]
+ ifFalse: [Color r: 0.9 g: 0.9 b: 0.9].
- ifFalse: [MenuMorph menuColor].
  self color: c.
  self borderColor: #raised.
+ self borderWidth: 1.
- self borderWidth: MenuMorph menuBorderWidth.
  self useRoundedCorners!