The Trunk: Morphic-nice.1411.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-nice.1411.mcz

commits-2
Nicolas Cellier uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-nice.1411.mcz

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

Name: Morphic-nice.1411
Author: nice
Time: 6 April 2018, 12:18:50.18955 pm
UUID: b1fb10c7-ba0f-7f41-a17f-1cdfd5e60e85
Ancestors: Morphic-mt.1410

Fix http://bugs.squeak.org/view.php?id=7863 can't undo paste initials

=============== Diff against Morphic-mt.1410 ===============

Item was changed:
  ----- Method: TextEditor>>pasteInitials: (in category 'editing keys') -----
  pasteInitials: aKeyboardEvent
  "Replace the current text selection by an authorship name/date stamp; invoked by cmd-shift-v, easy way to put an authorship stamp in the comments of an editor."
 
  self insertAndCloseTypeIn.
+ self openTypeIn.
  self replace: self selectionInterval with: (Text fromString: Utilities changeStamp) and: [self selectAt: self stopIndex].
+ self closeTypeIn.
  ^ true!