[squeak-dev] The Trunk: ToolBuilder-Morphic-ct.252.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 1 14:06:42 UTC 2020


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

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

Name: ToolBuilder-Morphic-ct.252
Author: ct
Time: 20 January 2020, 8:57:46.404972 pm
UUID: 2b311bcc-31ca-dc4d-8ebf-7a1cad07624e
Ancestors: ToolBuilder-Morphic-mt.251

Implement "browse/debug button action" properly on PluggabeButtonMorphPlus

=============== Diff against ToolBuilder-Morphic-mt.251 ===============

Item was added:
+ ----- Method: PluggableButtonMorphPlus>>browseImplementationOfActionSelector (in category 'debug menu') -----
+ browseImplementationOfActionSelector
+ 
+ 	action ifNotNil: [
+ 		^ action outerContext method browse].
+ 	^ super browseImplementationOfActionSelector!

Item was added:
+ ----- Method: PluggableButtonMorphPlus>>debugAction (in category 'debug menu') -----
+ debugAction
+ 
+ 	action ifNil: [^ super debugAction].
+ 	(Process
+ 		forBlock: [self performAction]
+ 		runUntil: [:context | context closure = action])
+ 			debugWithTitle: ('Debug button action "{1}" in model "{2}"' format: {self label. self target printString}).!



More information about the Squeak-dev mailing list