[squeak-dev] The Trunk: Tools-mt.1110.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jan 22 10:57:45 UTC 2022


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

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

Name: Tools-mt.1110
Author: mt
Time: 22 January 2022, 11:57:41.801321 am
UUID: 5ccbf9a4-6204-d344-b9d3-16f642df6b58
Ancestors: Tools-mt.1109

Complements Morphic-mt.1854

=============== Diff against Tools-mt.1109 ===============

Item was added:
+ ----- Method: Inspector>>okToRevertChanges: (in category 'user edits') -----
+ okToRevertChanges: aspect
+ 	"Clear caches since we use #textEdited: callback from view."
+ 	
+ 	aspect = #expression: ifTrue: [
+ 		expression := ''].
+ 	aspect = #typeValue: ifTrue: [
+ 		contentsTyped := nil.
+ 		shouldStyleValuePane := false].
+ 	^ true!

Item was added:
+ ----- Method: ObjectExplorer>>okToRevertChanges: (in category 'user edits') -----
+ okToRevertChanges: aspect
+ 	"Clear caches since we use #textEdited: callback from view."
+ 
+ 	aspect = #expression: ifTrue: [expression := ''].
+ 	^ true!



More information about the Squeak-dev mailing list