A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1501.mcz==================== Summary ====================
Name: Morphic-ct.1501
Author: ct
Time: 12 August 2019, 1:55:12.151463 pm
UUID: d33551bf-afdc-c94d-a872-00a881d17c7d
Ancestors: Morphic-ct.1500
Remove deprecated filter method from MenuMorph
We have #handleFiltering: instead of #filterListWith:.
=============== Diff against Morphic-ct.1500 ===============
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!