Skip to content

Commit

Permalink
Fixes: pharo-project#6763 now the positioning is better
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Jul 3, 2020
1 parent 4aaee8c commit dd219a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Morphic-Base/Form.extension.st
Expand Up @@ -12,13 +12,13 @@ Form >> asMorph [
]

{ #category : #'*Morphic-Base' }
Form class >> floodFillTolerance [
^ FloodFillTolerance ifNil: [FloodFillTolerance := 0.0]
Form >> floodFillTolerance [
^ self class floodFillTolerance
]

{ #category : #'*Morphic-Base' }
Form >> floodFillTolerance [
^ self class floodFillTolerance
Form class >> floodFillTolerance [
^ FloodFillTolerance ifNil: [FloodFillTolerance := 0.0]
]

{ #category : #'*Morphic-Base' }
Expand Down
1 change: 1 addition & 0 deletions src/Morphic-Base/SystemProgressMorph.class.st
Expand Up @@ -277,6 +277,7 @@ SystemProgressMorph >> initialize [
vResizing: #shrinkWrap;
layoutInset: 10@6;
minWidth: 150.
self position: 10@20
]

{ #category : #accessing }
Expand Down

0 comments on commit dd219a5

Please sign in to comment.