[squeak-dev] The Trunk: Morphic-mt.1647.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Apr 17 14:58:50 UTC 2020


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

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

Name: Morphic-mt.1647
Author: mt
Time: 17 April 2020, 4:58:43.19286 pm
UUID: bd102835-5929-d842-8b91-e06c7a922d7a
Ancestors: Morphic-mt.1646

Allow users to copy pieces of text from a dialog window's message.

=============== Diff against Morphic-mt.1646 ===============

Item was changed:
  ----- Method: DialogWindow>>createMessage: (in category 'initialization') -----
  createMessage: aString 
  	
+ 	messageMorph := aString asText asMorph.
+ 	messageMorph
+ 		name: 'Message';
+ 		readOnly: true;
+ 		setProperty: #indicateKeyboardFocus toValue: #never.
- 	messageMorph := aString asText asMorph lock.
- 	messageMorph name: 'Message'.
  	self setMessageParameters.	
  	^ messageMorph!



More information about the Squeak-dev mailing list