The Trunk: Morphic-mt.1391.mcz

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

The Trunk: Morphic-mt.1391.mcz

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

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

Name: Morphic-mt.1391
Author: mt
Time: 25 January 2018, 11:08:01.098657 am
UUID: b014edf4-b643-aa45-93da-314b58b16517
Ancestors: Morphic-mt.1390

Because of the changes in WorldState>>displayWorldSafely: to reduce the number of interactions and debuggers, remove the restoring loop in MorphicProject>>restore. It is not needed anymore and caused another bug when discarding an emergency evaluator.

=============== Diff against Morphic-mt.1390 ===============

Item was changed:
  ----- Method: MorphicProject>>restore (in category 'display') -----
  restore
- "Display world safely. Catch all errors to avoid image freeze. We assume that the world will avoid drawing erroneous morphs twice"
 
+ world displayWorldSafely.!
- | finished |
- finished := false.
-
- [finished] whileFalse: [
- [world displayWorldSafely. finished := true]
- on: Error do: [:err | world fullRepaintNeeded]].
- !