Skip to content
New issue

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

Remove GTPlaygroundHelp #9079

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 0 additions & 7 deletions src/GT-Playground/GTPlayground.class.st
Expand Up @@ -394,13 +394,6 @@ GTPlayground >> compose [
self title: self defaultPlaygroundTitle.
self titleIcon: self playgroundIcon.
self act: [:b | b update] icon: GLMUIThemeExtraIcons glamorousRefresh entitled: 'Update'.
self act: [:b |
HelpBrowser open selectTopicSatisfying: [:each |
each owner notNil and: [
(each owner key = GTPlaygroundHelp key) and: [
each title = 'Overview' ] ] ] ]
icon: GLMUIThemeExtraIcons glamorousHelp
entitled: 'Help'.

self act: [ :b |
SettingBrowser new
Expand Down
31 changes: 0 additions & 31 deletions src/GT-Playground/GTPlaygroundHelp.class.st

This file was deleted.

5 changes: 1 addition & 4 deletions src/NewTools-Playground/StPlaygroundHelpCommand.class.st
Expand Up @@ -25,8 +25,5 @@ StPlaygroundHelpCommand class >> defaultName [
{ #category : #execution }
StPlaygroundHelpCommand >> execute [

HelpBrowser open selectTopicSatisfying: [:each |
each owner notNil
and: [ (each owner key = GTPlaygroundHelp key)
and: [ each title = 'Overview' ] ] ]

]