2015-04-08 18:34 GMT+02:00 Laura Risani <laura.ris...@gmail.com>:

> Hi all,
>
> Say that i wanted to open a SettingBrowser showing only the settings
> defined by 'SystemSystemSettings class >> systemSettingOn:' . How could i
> do that?
>
> There is a method 'SettingBrowser >> browse:' . Based on it's comment i
> tried adding to systemSettingOn: the pragma <banana>, and then sending ' 
> SettingBrowser
> browse:#('banana') ' but it didn't work.
>

Most (all?) settings use the pragma <systemsettings>, that means you can
not filter by the pragma keyword, to only get the settings for one
subcategory in the default settings.
But if the settings you want to display are all from one Package, you can
browse only settings from that package:

(SettingBrowser new setViewedPackageNames: 'Settings-System')
        open;
        expandAll



>
> Best,
> Laura
>

Reply via email to