Hi, it seems that FileBrowser/FileList is never used... And I absolutely don't understand some design choices. 1) Having a single reference inst var for both selectedDirectory and selectedFile : this is a bug factory, see http://code.google.com/p/pharo/issues/detail?id=5881 and http://code.google.com/p/pharo/issues/detail?id=5884 for example of bugs (I could open 1 bug entry per menu item I guess) 2) auto-selecting the file item under pop-up menu click This is a windows thing and anti-Smalltalk-UI-custom This is not at all uniform in the rest of Pharo UI (not even on the directory list) The implementation is buggish (see ttp://code.google.com/p/pharo/issues/detail?id=5882 which is duplicate of ttp://code.google.com/p/pharo/issues/detail?id=5625) There was (and still is) a specific menu when no file is selected... fileListMenu: aMenu reference ifNil: [^ self noFileSelectedMenu: aMenu] ifNotNil: [^ self fileSelectedMenu: aMenu]. I don't want to argue whether or not FileList did deserve a clean-up, I'm quite sure it did. And I also agree that we can temporarily break things in development images. But when the clean-up is so far from anything functional, I just wonder who do you want to eat the dog food? I'm a bit sick of it ;) Nicolas