FileBrowser.st
branchjv
changeset 16797 4f240085a622
parent 16727 639ebd184cf4
parent 16780 aafef33b5a47
child 17134 c4cce8b7a95d
--- a/FileBrowser.st	Tue Aug 02 06:55:53 2016 +0200
+++ b/FileBrowser.st	Wed Aug 10 18:16:30 2016 +0100
@@ -6810,10 +6810,10 @@
 
 getInfoFile
     "get filename of a description-file (.dir.info, README etc.);
-     This file is automatically shown when a directory is enterred.
+     This file is automatically shown when a directory is entered.
      You can add more names below if you like."
 
-    #( 
+    #(
        '.dir.info'
        'README'
        'ReadMe'
@@ -6828,7 +6828,7 @@
        'Info.txt'
        'info.txt'
        'INFO.TXT'
-    ) do:[:f | 
+    ) do:[:f |
         |n|
         n := currentDirectory construct:f.
         (n isReadable and:[n isDirectory not]) ifTrue:[
@@ -6983,7 +6983,6 @@
         icn := assoc value.
         icn notNil ifTrue:[
             icn := icn copy onDevice:self graphicsDevice.
-            icn clearMaskedPixels.
             matchedIcons add:(assoc key -> icn).
             ^ icn
         ].