[squeak-dev] The Trunk: Tools-mt.1113.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jan 25 11:25:16 UTC 2022


Marcel Taeumel uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-mt.1113.mcz

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

Name: Tools-mt.1113
Author: mt
Time: 25 January 2022, 12:25:06.913258 pm
UUID: e1a3c334-5cc9-7844-a5fb-8fa646917c81
Ancestors: Tools-mt.1112

Only show that CMD+S notification in workspaces if the #fileOutOnAccept preferences is enabled. So the old-style of working with workspaces is still supported without extra pop-ups. See http://lists.squeakfoundation.org/pipermail/squeak-dev/2022-January/218623.html

This also documents a small bug we have with the CMD+o (spawn) operation...

=============== Diff against Tools-mt.1112 ===============

Item was changed:
  ----- Method: Workspace>>acceptContents: (in category 'accessing') -----
  acceptContents: aString
  
+ 	(self class fileOutOnAccept and: [acceptAction isNil]) ifTrue: [self inform: 'Your edits were <b>not persisted</b>. Please do not close this<br>window. If you want to save your edits to a file on accept,<br>check the workspace preferences or this window''s menu.' translated asTextFromHtml].
- 	acceptAction ifNil: [self inform: 'Your edits were <b>not persisted</b>. Please do not close this<br>window. If you want to save your edits to a file on accept,<br>check the workspace preferences or this window''s menu.' translated asTextFromHtml].
  
  	^ (acceptAction ifNotNil: [acceptAction value: aString]) ~~ false
  		and: [super acceptContents: aString]!



More information about the Squeak-dev mailing list