[squeak-dev] The Inbox: Tools-ael.392.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Dec 19 23:25:18 UTC 2011


A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-ael.392.mcz

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

Name: Tools-ael.392
Author: ael
Time: 19 December 2011, 3:24:27.245 pm
UUID: 12f39e65-7206-ad40-b0d5-cf38122a7c40
Ancestors: Tools-bf.391

fix (received from Scott Wallace) to long-standing bug in which a newly opened message list would not scroll the code to show the first search-term match

=============== Diff against Tools-bf.391 ===============

Item was added:
+ ----- Method: MessageSet>>modelWakeUp (in category 'user interface') -----
+ modelWakeUp
+ 	"A window with me as model has been activated."
+ 
+ 	| tm |
+ 	super modelWakeUp.
+ 	(self canDiscardEdits and: [autoSelectString notNil]) ifTrue:
+ 		[tm := self codeTextMorph.
+ 		(tm hasProperty: #launched) ifFalse:
+ 			[tm scrollSelectionIntoView.
+ 			tm setProperty: #launched toValue: true]
+ 		]!




More information about the Squeak-dev mailing list