Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1504.mcz==================== Summary ====================
Name: Morphic-mt.1504
Author: mt
Time: 14 August 2019, 1:05:30.371512 pm
UUID: 0f3016f2-1bc1-bf46-b456-bf4f7bc11cf1
Ancestors: Morphic-mt.1501, Morphic-ct.1503
Merges ct.1503.
=============== Diff against Morphic-mt.1501 ===============
Item was removed:
- ----- Method: MenuMorph>>filterListWith: (in category 'keyboard control') -----
- filterListWith: char
- | matchString |
- matchString := self valueOfProperty: #matchString ifAbsentPut: [String new].
- matchString := char = Character backspace
- ifTrue:
- [matchString isEmpty ifTrue: [matchString] ifFalse: [matchString allButLast]]
- ifFalse: [matchString copyWith: char].
- self setProperty: #matchString toValue: matchString!