DirectoryView.st
changeset 473 396ab247a5af
parent 451 a8da4f1924a4
child 474 7b19423c8b79
equal deleted inserted replaced
472:e86278147361 473:396ab247a5af
   287 
   287 
   288 !DirectoryView methodsFor:'callbacks'!
   288 !DirectoryView methodsFor:'callbacks'!
   289 
   289 
   290 fileDoubleClicked
   290 fileDoubleClicked
   291       
   291       
   292     fileDoubleClickAction notNil 
   292     (fileDoubleClickAction notNil and: [self selectionOfFile value notNil]) 
   293     ifTrue: 
   293     ifTrue: 
   294     [
   294     [
   295         fileDoubleClickAction numArgs = 0
   295         fileDoubleClickAction numArgs = 0
   296         ifTrue:
   296         ifTrue:
   297         [
   297         [
   305     ]
   305     ]
   306 !
   306 !
   307 
   307 
   308 fileSelected
   308 fileSelected
   309       
   309       
   310     fileSelectAction notNil 
   310     (fileSelectAction notNil and: [self selectionOfFile value notNil]) 
   311     ifTrue: 
   311     ifTrue: 
   312     [
   312     [
   313         fileSelectAction numArgs = 0
   313         fileSelectAction numArgs = 0
   314         ifTrue:
   314         ifTrue:
   315         [
   315         [