The Trunk: Morphic-mt.1647.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-mt.1647.mcz

commits-2
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!