Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1050.mcz==================== Summary ====================
Name: System-mt.1050
Author: mt
Time: 9 January 2019, 8:44:51.214737 am
UUID: 2d7b87a9-ebd0-40a8-997d-8cecc54391a1
Ancestors: System-tpr.1049
Adds convenience message to re-inizialize all UI themes. Useful for ReleaseBuilder and post-load scripts.
=============== Diff against System-tpr.1049 ===============
Item was added:
+ ----- Method: UserInterfaceTheme class>>cleanUpAndReset (in category 'initialize-release') -----
+ cleanUpAndReset
+ "Rebuild all themes and re-apply the current one by name."
+
+ | nameToReset |
+ nameToReset := UserInterfaceTheme current name.
+ self cleanUp: true.
+ (self named: nameToReset) apply.!