pharo-spec / NewTools

All development tools for Pharo, developed with Spec
21 stars 52 forks source link

File Browser: Add "disable preview" #788

Closed hernanmd closed 1 month ago

hernanmd commented 1 month ago

The default File Browser (without specifying any options) will open a presenter with Tree Navigation, Bookmarks, Breadcrumb, Navigation Buttons, File List, Filters, and Preview:

StFileSystemPresenter new open.

This PR includes a feature to open a File Browser without the preview presenter:

StFileSystemPresenter new
    disablePreview;
    open.

It can also be disabled globally (for all file browsers) through the UI using the File Browser settings button and unchecking "Enable preview."