Skip to content

Commit

Permalink
Merge pull request #734 from hernanmd/fix_preview_custom_setting_brow…
Browse files Browse the repository at this point in the history
…ser_open

Fix Preview Settings Browser: does not open when a custom setting is used
  • Loading branch information
jecisc authored Apr 4, 2024
2 parents 7ea534a + 8c33187 commit 2fa1429
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/NewTools-SettingsBrowser/StSettingsApplication.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@ StSettingsApplication >> iconMap [

{ #category : 'accessing' }
StSettingsApplication >> iconMapAt: aString [
"Answer a <Symbol> specifying an icon name. Defaults to a generic icon if the application does not provide one"

^ self iconMap at: aString
^ self iconMap
at: aString
ifAbsent: [ #info ]
]

{ #category : 'initialization' }
Expand Down

0 comments on commit 2fa1429

Please sign in to comment.