The Trunk: Tools-ct.1361.mcz

[email protected] Sun, 5 Jul 2026 15:49:39 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Christoph Thiede uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ct.1361.mcz

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

Name: Tools-ct.1361
Author: ct
Time: 5 July 2026, 5:49:39.364022 pm
UUID: 087fa19b-f173-41c3-9b32-7b8aff7979d6
Ancestors: Tools-ct.1360

Slip: Adds missing widget name to fix new ObjectExplorer>>#okToChange: (so you can navigate in the tree again without losing changes in the expression pane).

=============== Diff against Tools-ct.1360 ===============

Item was changed:
  ----- Method: ObjectExplorer>>buildTreeWith: (in category 'toolbuilder') -----
  buildTreeWith: builder
  
  	^ builder pluggableTreeSpec new
  		model: self;
+ 		name: #tree;
  		nodeClass: self class nodeClass;
  		roots: #getList;
  		keyPress: #explorerKey:from:event:;
  		getSelected: #currentSelection;
  		setSelected: #currentSelection:;
  		setSelectedParent: #currentParent:;
  		menu: #genericMenu:;
  		dragItem: #getDragItem:;
  		dragType: #getDragType:;
  		autoDeselect: false;
  		columns: (ObjectExplorerWrapper showContentsInColumns
  			ifTrue: [{
  				[:listMorph | (listMorph filteredItems collect: [:item |
  					item preferredWidthOfColumn: 1]) max].
  				nil "take all the space"}]);
  		yourself!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]