DirectoryContentsBrowser.st
changeset 6359 53212b2cad15
parent 6298 6aae3f1eaa15
child 6374 f9bed8385350
--- a/DirectoryContentsBrowser.st	Wed Jul 13 20:09:39 2005 +0200
+++ b/DirectoryContentsBrowser.st	Thu Jul 14 10:50:22 2005 +0200
@@ -1302,7 +1302,7 @@
     "aspect for show more file properties 
     "
 
-    ^ self colVisibilityAspectFor:#viewDetails ifAbsent:[ false asValue ].
+    ^ self colVisibilityAspectFor:#viewDetails ifAbsent:[ true asValue ].
 !
 
 viewGroup
@@ -1326,13 +1326,13 @@
 viewOwner
     " aspect for show owner information "
 
-    ^ self colVisibilityAspectFor:#viewOwner ifAbsent:[ false asValue ].
+    ^ self colVisibilityAspectFor:#viewOwner ifAbsent:[ true asValue ].
 !
 
 viewPermissions
     " aspect for show permission information "
 
-    ^ self colVisibilityAspectFor:#viewPermissions ifAbsent:[ false asValue ].
+    ^ self colVisibilityAspectFor:#viewPermissions ifAbsent:[ true asValue ].
 !
 
 viewPreview
@@ -1346,7 +1346,7 @@
 
     " aspect for show size information "
 
-    ^ self colVisibilityAspectFor:#viewSize ifAbsent:[ false asValue ].
+    ^ self colVisibilityAspectFor:#viewSize ifAbsent:[ true asValue ].
 !
 
 viewSizeInBytes
@@ -1365,7 +1365,7 @@
 
     " aspect for show time information "
 
-    ^ self colVisibilityAspectFor:#viewTime ifAbsent:[ false asValue ].
+    ^ self colVisibilityAspectFor:#viewTime ifAbsent:[ true asValue ].
 !
 
 viewType
@@ -3199,5 +3199,5 @@
 !DirectoryContentsBrowser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.180 2005-05-11 09:30:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DirectoryContentsBrowser.st,v 1.181 2005-07-14 08:50:22 cg Exp $'
 ! !