A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-jr.893.mcz==================== Summary ====================
Name: Tools-jr.893
Author: jr
Time: 20 September 2019, 9:37:14.292454 pm
UUID: ff30360f-3e9b-d449-a2ee-a7644407fe27
Ancestors: Tools-mt.892
Allow to remove all selected methods from current ChangeSet in MessageTrace.
Previously, only the viewed message was removed.
=============== Diff against Tools-mt.892 ===============
Item was added:
+ ----- Method: MessageTrace>>removeFromCurrentChanges (in category '*Tools') -----
+ removeFromCurrentChanges
+ "Tell the changes mgr to forget that the selected messages were changed."
+
+ self selectedMessages do: [:each |
+ each setClassAndSelectorIn: [:class :selector |
+ ChangeSet current removeSelectorChanges: selector class: class]].
+ self changed: #annotation!