[squeak-dev] The Trunk: Tools-kfr.605.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Apr 26 17:36:29 UTC 2015


Karl Ramberg uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-kfr.605.mcz

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

Name: Tools-kfr.605
Author: kfr
Time: 26 April 2015, 7:35:58.715 pm
UUID: 6b04a91f-7446-bd4f-979c-f445bfb1061b
Ancestors: Tools-kfr.604

Top pane in FileList had too little room

=============== Diff against Tools-kfr.604 ===============

Item was changed:
  ----- Method: FileList>>buildWith: (in category 'toolbuilder') -----
  buildWith: builder
  	"FileList open"
  	| windowSpec window |
  	windowSpec := 	self buildWindowWith: builder specs: {
+ 		(0 at 0 corner: 1 at 0.1) -> [self buildPatternInputWith: builder].
+ 		(0.25 at 0.1 corner: 1 at 0.5) -> [self buildFileListWith: builder].
+ 		(0 at 0.1 corner: 0.25 at 1) -> [self buildDirectoryTreeWith: builder].
- 		(0 at 0 corner: 1 at 0.06) -> [self buildPatternInputWith: builder].
- 		(0.25 at 0.06 corner: 1 at 0.5) -> [self buildFileListWith: builder].
- 		(0 at 0.06 corner: 0.25 at 1) -> [self buildDirectoryTreeWith: builder].
  		(0.25 at 0.5 corner: 1 at 1) -> [self buildContentPaneWith: builder].
  	}.
  	window := builder build: windowSpec.
  	self changed: #selectedPath.
  	^window!



More information about the Squeak-dev mailing list