The Trunk: EToys-tfel.219.mcz

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

The Trunk: EToys-tfel.219.mcz

commits-2
Tim Felgentreff uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-tfel.219.mcz

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

Name: EToys-tfel.219
Author: tfel
Time: 31 August 2016, 11:10:42.577793 am
UUID: 67ea8fba-c3dd-ca4c-8b22-4abf7e60e6ba
Ancestors: EToys-tfel.218

pasteUpMorph is usually nil at this point, ask the world

=============== Diff against EToys-tfel.218 ===============

Item was changed:
  ----- Method: EtoysPresenter>>drawingJustCompleted: (in category 'misc') -----
  drawingJustCompleted: aSketchMorph
  "The user just finished drawing.  Now maybe put up a viewer"
 
  | aWorld |
  self flushPlayerListCache.  "Because a new drawing already created one, thus obviating #assuredPlayer kicking in with its invalidation"
 
  aWorld := associatedMorph world.
  (aWorld hasProperty: #automaticFlapViewing)
  ifTrue:
  [^ aWorld presenter viewMorph: aSketchMorph].
 
+ (aWorld hasProperty: #automaticViewing)
- (aSketchMorph pasteUpMorph hasProperty: #automaticViewing)
  ifTrue:
  [self viewMorph: aSketchMorph]!