Skip to content

Commit

Permalink
Merge pull request #17082 from hernanmd/new_settings_browser_updates
Browse files Browse the repository at this point in the history
Minor fixes and convenience methods to debug settings
  • Loading branch information
Ducasse authored Sep 9, 2024
2 parents 7a67513 + dd28ea3 commit e37a6e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Growl/GrowlMorph.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ GrowlMorph class >> growlSettingsOn: aBuilder [
description: 'All settings concerned with the notifications popup look''n feel';
with: [
(aBuilder pickOne: #type)
label: 'Popup notifycation type';
label: 'Popup notification type';
target: self;
default: #growl;
order: 1;
Expand Down
2 changes: 1 addition & 1 deletion src/IconPacks/IconPacksFetchPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ IconPacksFetchPresenter class >> reset [
IconPacksFetchPresenter class >> settingsOn: aBuilder [
<systemsettings>

(aBuilder button: #openIconsPackManager)
(aBuilder button: #open)
parent: #appearance;
order: 2;
target: self;
Expand Down
9 changes: 9 additions & 0 deletions src/System-Settings-Core/PragmaSetting.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,15 @@ PragmaSetting >> precondition: aValuable [
precondition := aValuable
]

{ #category : 'printing' }
PragmaSetting >> printOn: aStream [

aStream
<< '[Setting: ';
<< self name asString;
<< ']'
]

{ #category : 'accessing' }
PragmaSetting >> realTarget [
^ target isSymbol
Expand Down

0 comments on commit e37a6e0

Please sign in to comment.