The Trunk: EToys-mt.426.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-mt.426.mcz

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

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

Name: EToys-mt.426
Author: mt
Time: 19 February 2021, 9:26:25.709408 am
UUID: 2d83eaa7-77bb-7846-aa2e-d0b5abc69d29
Ancestors: EToys-mt.425

Complements Morphic-mt.1723

=============== Diff against EToys-mt.425 ===============

Item was removed:
- ----- Method: WiWPasteUpMorph>>doDeferredUpdating (in category 'update cycle') -----
- doDeferredUpdating
- "If this platform supports deferred updates, then make my canvas be the Display (or a rectangular portion of it), set the Display to deferred update mode, and answer true. Otherwise, do nothing and answer false. One can set the class variable DisableDeferredUpdates to true to completely disable the deferred updating feature."
-
- PasteUpMorph disableDeferredUpdates ifTrue: [^ false].
- (Display deferUpdates: true) ifNil: [^ false].  "deferred updates not supported"
-
- self resetViewBox.
- ^ true
- !