The Trunk: MorphicExtras-ct.265.mcz

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

The Trunk: MorphicExtras-ct.265.mcz

commits-2
Marcel Taeumel uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ct.265.mcz

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

Name: MorphicExtras-ct.265
Author: ct
Time: 21 September 2019, 4:31:18.110719 pm
UUID: ab3cc325-22f4-cd4b-b806-2125e4ed2e08
Ancestors: MorphicExtras-mt.263

Clean up PianoKeyboardMorph initialization

=============== Diff against MorphicExtras-mt.263 ===============

Item was changed:
  ----- Method: PianoKeyboardMorph>>initialize (in category 'initialization') -----
  initialize
  "initialize the state of the receiver"
  super initialize.
  ""
 
  whiteKeyColor := Color gray: 0.95.
  blackKeyColor := Color black.
  playingKeyColor := Color red.
  nOctaves := 6.
  self buildKeyboard.
+ soundPrototype := FMSound new.!
- soundPrototype := FMSound brass1 duration: 9.9.
- soundPrototype := FMSound new.
- !

Item was added:
+ ----- Method: PianoKeyboardMorph>>initializeToStandAlone (in category 'initialization') -----
+ initializeToStandAlone
+
+ super initializeToStandAlone.
+ soundPrototype := FMSound brass1 duration: 9.9.!