[squeak-dev] The Trunk: ToolBuilder-Morphic-mt.300.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Feb 10 09:16:00 UTC 2022


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

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

Name: ToolBuilder-Morphic-mt.300
Author: mt
Time: 10 February 2022, 10:15:59.623982 am
UUID: 008d75c1-4c9e-d24a-befe-920e12f74b8d
Ancestors: ToolBuilder-Morphic-mt.299

In file-selection dialogs, remove overriding the already configurable defaults for #hScrollBarPolicy. See preferences #alwaysHideHScrollbar and #alwaysShowHScrollbar.

=============== Diff against ToolBuilder-Morphic-mt.299 ===============

Item was changed:
  ----- Method: FileAbstractSelectionDialog>>buildDirectoryTreeWith: (in category 'toolbuilder') -----
  buildDirectoryTreeWith: builder 
  	| treeSpec |
  	treeSpec := builder pluggableTreeSpec new.
  	treeSpec
  		 model: self ;
  		 roots: #rootDirectoryList ;
  		 hasChildren: #hasMoreDirectories: ;
  		 getChildren: #subDirectoriesOf: ;
  		 getSelectedPath: #selectedPath ;
  		 setSelected: #setDirectoryTo: ;
  		 getSelected: #directory;
  		 label: #directoryNameOf: ;
  		 menu: nil ;
+ 		 autoDeselect: false .
- 		 autoDeselect: false ;
- 		 hScrollBarPolicy: #whenNeeded.
  	^ treeSpec!

Item was changed:
  ----- Method: FileAbstractSelectionDialog>>buildFileListWith: (in category 'toolbuilder') -----
  buildFileListWith: builder 
  	| listSpec |
  	listSpec := builder pluggableListSpec new.
  	listSpec
  		 model: self ;
  		 list: #fileList ;
  		 getIndex: #fileListIndex ;
  		 setIndex: #fileListIndex: ;
  		 menu: nil ;
  		 keyPress: nil ;
  		 frame:
  		(self
  			frameOffsetFromTop:0
  			fromLeft: 0
  			width: 1
+ 			bottomFraction: 1) .
- 			bottomFraction: 1);
- 		hScrollBarPolicy: #whenNeeded .
  	^listSpec!



More information about the Squeak-dev mailing list