We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A method should be overridden to get one step closer to opening a new settings browser window, specific to an application settings. We should add:
StSettingsTree >> #nodeList | builder | ^ nodeList ifNil: [ builder := StSettingTreeBuilder new. self pragmasDo: [:p | builder buildPragma: p]. nodeList := builder nodeList. nodeList do: [:n | n model: self]. self checkForUnknownParent. self checkForUnknownTarget. self nodeList]
And we will be able to open application settings as this:
| setTree | setTree := (StSettingsTree new acceptableKeywords: { #systemsettings }) nodeNamed: #fileBrowser. (StSettingsMainPresenter newApplication: (StSettingsApplication new useBackend: #Morphic; yourself)) rootNodes: setTree allChildren; " < ---- This also should be updated " open
Also, we should simplify the script.
The text was updated successfully, but these errors were encountered:
hernanmd
No branches or pull requests
A method should be overridden to get one step closer to opening a new settings browser window, specific to an application settings. We should add:
And we will be able to open application settings as this:
Also, we should simplify the script.
The text was updated successfully, but these errors were encountered: