Opening filtered Setting Browser in Pharo 4.0
Hi, I am looking for how we can open Setting Browser with only desired setting items and found this solution: SettingBrowser new changeSearchedText: 'sendUsageData'; open; expandAll Is there a better way? We want to have a possibility to open SettingBrowser from Spotter as it was discussed recently. Thanks! Juraj
What about: SettingBrowser new changePackageSet: (RPackage organizer packageNamed: 'GT-Spotter-EventRecorder') asOrderedCollection; open; expandAll. Cheers, Andrei On Thu, Mar 12, 2015 at 7:08 PM, Juraj Kubelka <juraj.kubelka@gmail.com> wrote:
Hi,
I am looking for how we can open Setting Browser with only desired setting items and found this solution:
SettingBrowser new changeSearchedText: 'sendUsageData'; open; expandAll
Is there a better way? We want to have a possibility to open SettingBrowser from Spotter as it was discussed recently.
Thanks! Juraj
Yes, this is also an option if we do not mind to show a bit more all options related to the spotter event recorder. Thanks! Cheers, Juraj
12. 3. 2015 v 16:15, Andrei Chis <chisvasileandrei@gmail.com>:
What about:
SettingBrowser new changePackageSet: (RPackage organizer packageNamed: 'GT-Spotter-EventRecorder') asOrderedCollection; open; expandAll.
Cheers, Andrei
On Thu, Mar 12, 2015 at 7:08 PM, Juraj Kubelka <juraj.kubelka@gmail.com <mailto:juraj.kubelka@gmail.com>> wrote: Hi,
I am looking for how we can open Setting Browser with only desired setting items and found this solution:
SettingBrowser new changeSearchedText: 'sendUsageData'; open; expandAll
Is there a better way? We want to have a possibility to open SettingBrowser from Spotter as it was discussed recently.
Thanks! Juraj
PharoLauncher does this at the level of a group. cheers -ben On Fri, Mar 13, 2015 at 3:22 AM, Juraj Kubelka <juraj.kubelka@gmail.com> wrote:
Yes, this is also an option if we do not mind to show a bit more all options related to the spotter event recorder.
Thanks! Cheers, Juraj
12. 3. 2015 v 16:15, Andrei Chis <chisvasileandrei@gmail.com>:
What about:
SettingBrowser new changePackageSet: (RPackage organizer packageNamed: 'GT-Spotter-EventRecorder') asOrderedCollection; open; expandAll.
Cheers, Andrei
On Thu, Mar 12, 2015 at 7:08 PM, Juraj Kubelka <juraj.kubelka@gmail.com> wrote:
Hi,
I am looking for how we can open Setting Browser with only desired setting items and found this solution:
SettingBrowser new changeSearchedText: 'sendUsageData'; open; expandAll
Is there a better way? We want to have a possibility to open SettingBrowser from Spotter as it was discussed recently.
Thanks! Juraj
participants (3)
-
Andrei Chis -
Ben Coman -
Juraj Kubelka