Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.888.mcz==================== Summary ====================
Name: Tools-mt.888
Author: mt
Time: 12 September 2019, 11:42:03.251062 am
UUID: e26e9099-802b-f347-97e1-fe09da5ecd81
Ancestors: Tools-dtl.887
Adds a convenient way to open a transcript window if there is none.
=============== Diff against Tools-dtl.887 ===============
Item was added:
+ ----- Method: TranscriptStream>>openIfNone (in category '*Tools') -----
+ openIfNone
+ "Open a transcript window if there are no open windows."
+
+ self countOpenTranscripts = 0 ifTrue: [self open]!