[squeak-dev] The Trunk: Morphic-mt.1695.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 8 14:51:36 UTC 2020


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

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

Name: Morphic-mt.1695
Author: mt
Time: 8 October 2020, 4:51:31.5986 pm
UUID: 5d2d4f82-0a28-0b4e-8909-c4b1b1cb0e78
Ancestors: Morphic-mt.1694

In Morphic projects, ensure that [cmd]+[dot] will always continue drawing.

=============== Diff against Morphic-mt.1694 ===============

Item was changed:
  ----- Method: MorphicProject>>interruptCleanUpFor: (in category 'scheduling & debugging') -----
  interruptCleanUpFor: interruptedProcess
  	"Clean up things in case of a process interrupt."
  
  	super interruptCleanUpFor: interruptedProcess.
  
  	self uiProcess == interruptedProcess ifTrue: [
  		ActiveHand ifNotNil: [ActiveHand interrupted].
  		ActiveWorld := world. "reinstall active globals"
  		ActiveHand := world primaryHand.
  		ActiveHand interrupted. "make sure this one's interrupted too"
  		ActiveEvent := nil.
  		
+ 		world removeProperty: #shouldDisplayWorld.
+ 		
  		Preferences eToyFriendly
+ 			ifTrue: [world stopRunningAll]].!
- 			ifTrue: [Project current world stopRunningAll]].!



More information about the Squeak-dev mailing list