Skip to content

Commit

Permalink
Merge pull request pharo-spec#720 from tesonep/fix-issue-pharo-14700
Browse files Browse the repository at this point in the history
Showing CMD character in OSX in Spotter
  • Loading branch information
tesonep authored Mar 18, 2024
2 parents 937a4e9 + 168b353 commit 9571836
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/NewTools-Core/StPharoApplication.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,16 @@ StPharoApplication >> newIconProvider [
^ StPharoDefaultIconProvider new
]

{ #category : 'private - running' }
StPharoApplication >> resetBackend [
| backendName |

backendName := backend
ifNil: [ self class defaultBackendName ]
ifNotNil: [ backend name ].
self useBackend: backendName.
]

{ #category : 'initialization' }
StPharoApplication >> resetConfiguration [

Expand Down Expand Up @@ -104,7 +114,8 @@ StPharoApplication >> start [
{ #category : 'system startup' }
StPharoApplication >> startUp: resuming [

self resetConfiguration
self resetConfiguration.
self resetBackend.
]

{ #category : 'settings' }
Expand Down
1 change: 1 addition & 0 deletions src/NewTools-Spotter/StSpotterHeaderPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ StSpotterHeaderPresenter >> initializePresenters [
self addStyle: 'stSpotterHeader'.
amountLabelPresenter addStyle: 'dim'.
helpLabelPresenter addStyle: 'dim'.
helpLabelPresenter addStyle: 'shortcut'.
diveButtonPresenter image: (self application iconNamed: #smallForward).
diveButtonPresenter eventHandler
whenMouseDownDo: [ :event |
Expand Down

0 comments on commit 9571836

Please sign in to comment.