HiYes - it's something that I've been meaning to persist through the Preferences service, but it's not bubbled to the top of my list yet.In the meantime, you can change the Document Library globally so that folders are shown by default by editing the following two files:documentlist.get.html.ftlAppend showFolders: true to the setOptions function call (after highlightFile - remember to add a comma on the end of that line).The button doesn't automatically pick up the changed default, so if this bothers you, you can also update as follows:documentlist.jsSearch for Hide/Show Folders button around line 490 and add this.widgets.showFolders.set("label", this._msg(this.options.showFolders ? "button.folders.hide" : "button.folders.show"));
after the createYUIButton call.Thanks,Mike