diff -r 8693f7f542d5 -r 9e48562729d9 FileDialog.st --- a/FileDialog.st Mon Apr 16 05:56:48 2018 +0200 +++ b/FileDialog.st Mon Apr 16 05:57:26 2018 +0200 @@ -1056,6 +1056,18 @@ translateLabel: true ) (MenuItem + enabled: enableDocuments + label: 'Documents Directory' + itemValue: doGotoDocumentsDirectory + translateLabel: true + ) + (MenuItem + enabled: enableDownloads + label: 'Downloads Directory' + itemValue: doGotoDownloadsDirectory + translateLabel: true + ) + (MenuItem label: 'Bookmarks' translateLabel: true submenuChannel: bookmarksMenu @@ -2168,6 +2180,16 @@ treeBrowser doGotoDesktopDirectory. ! +doGotoDocumentsDirectory + + treeBrowser doGotoDocumentsDirectory. +! + +doGotoDownloadsDirectory + + treeBrowser doGotoDownloadsDirectory. +! + doGotoHomeDirectory treeBrowser doGotoHomeDirectory.