Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.199.mcz==================== Summary ====================
Name: ST80-mt.199
Author: mt
Time: 6 April 2016, 11:14:33.615625 am
UUID: f48e2a2b-62a5-eb4d-b9ed-a2bb95db0935
Ancestors: ST80-mt.198
Fixes MVC-specific clean-up for save/load the image.
=============== Diff against ST80-mt.198 ===============
Item was changed:
----- Method: ControlManager class>>shutDown (in category 'snapshots') -----
+ shutDown
+ "Saves space in snapshots"
- shutDown "Saves space in snapshots"
+ Project current isMVC
+ ifTrue: [ScheduledControllers unCacheWindows].!
- Smalltalk isMorphic ifFalse: [ScheduledControllers unCacheWindows]!
Item was changed:
----- Method: ControlManager class>>startUp (in category 'snapshots') -----
startUp
+
+ Project current isMVC
+ ifTrue: [ScheduledControllers restore].!
- Smalltalk isMorphic ifFalse: [ScheduledControllers restore]!