[squeak-dev] The Trunk: ToolBuilder-MVC-mt.68.mcz

commits at source.squeak.org commits at source.squeak.org
Tue May 3 12:09:59 UTC 2022


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

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

Name: ToolBuilder-MVC-mt.68
Author: mt
Time: 3 May 2022, 2:09:56.469631 pm
UUID: e1e23b54-aa93-0b4b-a68f-f56cbd693a75
Ancestors: ToolBuilder-MVC-mt.67

Complements ST80-mt.284

=============== Diff against ToolBuilder-MVC-mt.67 ===============

Item was changed:
  ----- Method: MVCUIManager>>informUser:during: (in category 'ui requests') -----
+ informUser: aStringOrText during: aBlock
- informUser: aString during: aBlock
  	"Display a message above (or below if insufficient room) the cursor 
  	during execution of the given block.
+ 		Project uiManager informUser: 'Just a sec!!' during: [1 second wait].
- 		UIManager default informUser: 'Just a sec!!' during: [(Delay forSeconds: 1) wait].
  	"
  	(SelectionMenu labels: '')
  		displayAt: Sensor cursorPoint
+ 		withCaption: (aStringOrText ifNotNil: [
+ 			"This is a compromise. See commentary in DialogWindow >> #message:."
+ 			aStringOrText withNoLineLongerThan: (aStringOrText size > 900 ifTrue: [65] ifFalse: [45])])
- 		withCaption: aString
  		during: aBlock!



More information about the Squeak-dev mailing list