The Trunk: Morphic-ct.1515.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-ct.1515.mcz

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

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

Name: Morphic-ct.1515
Author: ct
Time: 5 September 2019, 2:48:49.111698 pm
UUID: 01f4fd5b-f0a3-5945-86f2-c41d230fde72
Ancestors: Morphic-mt.1514

New attempt to fix the invisible insert key

Did I do everything right with the postscript?

=============== Diff against Morphic-mt.1514 ===============

Item was changed:
  ----- Method: Editor class>>specialShiftCmdKeys (in category 'keyboard shortcut tables') -----
  specialShiftCmdKeys
 
  "Private - return array of key codes that represent single keys acting
  as if shift-command were also being pressed"
 
  ^#(
  1 "home"
  3 "enter"
  4 "end"
+ 5 "insert"
  8 "backspace"
  11 "page up"
  12 "page down"
  27 "escape"
  28 "left arrow"
  29 "right arrow"
  30 "up arrow"
  31 "down arrow"
  127 "delete"
  )!

Item was changed:
  (PackageInfo named: 'Morphic') postscript: '"Reset contributors."
+ SystemNavigation cleanUp: true.
+ Editor withAllSubclasses do: #initialize.'!
- SystemNavigation cleanUp: true.'!