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

commits at source.squeak.org commits at source.squeak.org
Thu Feb 13 12:37:03 UTC 2020


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

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

Name: Tools-mt.939
Author: mt
Time: 13 February 2020, 1:37:00.539714 pm
UUID: 21f18a61-361d-5348-9980-f95b1aa13203
Ancestors: Tools-ct.938

In debuggers, fixes the bug that occurred when fullStackSize is smaller than notifierStackSize.

Such a configuration is not useful but can happen when those preferences are changed independently for different reasons.

(Also completes a move-method from that merge in Help-Squeak-Project-mt.74)

=============== Diff against Tools-ct.938 ===============

Item was changed:
  ----- Method: Debugger>>expandStack (in category 'context stack - message list') -----
  expandStack
  	"Show a substantial amount of stack in the context pane."
  
  	self okToChange ifFalse: [^ self].
+ 	self newStack: (self contextStackTop stackOfSize: (self class fullStackSize max: self class notifierStackSize)).
- 	self newStack: (self contextStackTop stackOfSize: self class fullStackSize).
  	self changed: #contextStackList.
  !

Item was removed:
- ----- Method: VersionsBrowser>>offerVersionsHelp (in category 'menu') -----
- offerVersionsHelp
- 	(StringHolder new contents: self versionsHelpString)
- 		openLabel: 'Versions Browsers'!



More information about the Squeak-dev mailing list