The Trunk: ReleaseBuilder-mt.148.mcz

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

The Trunk: ReleaseBuilder-mt.148.mcz

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

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

Name: ReleaseBuilder-mt.148
Author: mt
Time: 11 August 2016, 8:05:35.421369 pm
UUID: 19d78716-7cb4-8842-8aaa-8f88441bae78
Ancestors: ReleaseBuilder-mt.147

Small clean-up for background setting.

=============== Diff against ReleaseBuilder-mt.147 ===============

Item was changed:
  ----- Method: ReleaseBuilder class>>setProjectBackground: (in category 'scripts - support') -----
  setProjectBackground: aFormOrColorOrFillStyle
 
+ ActiveWorld fillStyle: aFormOrColorOrFillStyle.
+ MorphicProject defaultFill: ActiveWorld fillStyle.
- MorphicProject defaultFill: (aFormOrColorOrFillStyle isForm
- ifTrue: [InfiniteForm with: aFormOrColorOrFillStyle]
- ifFalse: [aFormOrColorOrFillStyle isColor
- ifTrue: [SolidFillStyle color: aFormOrColorOrFillStyle]
- ifFalse: [aFormOrColorOrFillStyle]]).
- ActiveWorld fillStyle: MorphicProject defaultFill.
  ActiveWorld removeProperty: #hasCustomBackground.!