[FIX][BUG][3.4a][SMLoader] DNU for #specsForFolderSelector

Scott Wallace scott.wallace at squeakland.org
Wed Nov 13 00:06:46 UTC 2002


At 5:11 PM -0500 11/12/02, Brent Vukmer wrote:
>Fix attached for bug I just announced.  Woo-ha, my first changeset 
>posted to the list!

And a good one too!  Load updates now and it will come rolling in.

Cheers,

   -- Scott


>'From Squeak3.4alpha of ''11 November 2002'' [latest update: #5105] 
>on 12 November 2002 at 5:01:39 pm'!
>"Change Set:		FileList2-morphicViewFolderSelector-bkv
>Date:			12 November 2002
>Author:			Brent Vukmer
>
>For 3.4a images. This is a tiny fix to allow 
>FileList2>>morphicViewSelector to function correctly ( which in turn 
>enables the  SMLoader menu option ""set download directory"" to 
>function correctly ).
>"!
>
>
>!FileList2 class methodsFor: 'morphic ui' stamp: 'bkv 11/12/2002 16:55'!
>morphicViewFolderSelector: aDir
>
>	| aFileList window fixedSize |
>
>	aFileList _ self new directory: aDir.
>	aFileList optionalButtonSpecs: aFileList servicesForFolderSelector.
>	window _ (SystemWindow labelled: aDir pathName) model: aFileList.
>	aFileList modalView: window.
>
>	fixedSize _ 25.
>	self addFullPanesTo: window from: {
>		{self textRow: 'Please select a folder'. 0 @ 0 corner: 1 @ 0.
>				0 at 0 corner: 0 at fixedSize}.
>		{aFileList optionalButtonRow. 0 @ 0 corner: 1 @ 0.
>				0 at fixedSize corner: 0@(fixedSize * 2)}.
>		{aFileList morphicDirectoryTreePane. 0 at 0 corner: 1 at 1.
>				0@(fixedSize * 2) corner: 0 at 0}.
>	}.
>	aFileList postOpen.
>	^ window ! !




More information about the Squeak-dev mailing list