[Pkg] The Trunk: MorphicExtras-ct.315.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 5 18:40:08 UTC 2022


Christoph Thiede uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ct.315.mcz

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

Name: MorphicExtras-ct.315
Author: ct
Time: 5 May 2022, 8:40:04.744426 pm
UUID: 53ec6e90-bca3-8346-a218-52fde0c4c26f
Ancestors: MorphicExtras-mt.314

Complements Morphic-ct.1988 (active world), trying to keep the method stub in sync ...

=============== Diff against MorphicExtras-mt.314 ===============

Item was changed:
  ----- Method: WorldState>>doOneCycleInBackground (in category '*MorphicExtras-update cycle') -----
  doOneCycleInBackground
  	"Do one cycle of the interactive loop. This method is called repeatedly when this world is not the active window but is running in the background."
  
  	self halt.		"not ready for prime time"
  	
  	"process user input events, but only for remote hands"
  	self handsDo: [:hand |
  		(hand isKindOf: RemoteHandMorph) ifTrue: [
  			hand becomeActiveDuring: [
  				hand processEvents]]].
  	
+ 	self becomeActiveDuring: [
+ 		self runStepMethods.
+ 		self displayWorldSafely].!
- 	self runStepMethods.
- 	self displayWorldSafely.!



More information about the Packages mailing list