Skip to content

Commit

Permalink
fixed a few method protocols
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Jul 24, 2024
1 parent d5d19c4 commit 0d0d93f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion repository/OpenPonk-Core/OPTBorderColoredAsStroke.trait.st
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ OPTBorderColoredAsStroke >> strokeColor: aColor [
^ self stylePropertyNamed: #strokeColor put: aColor
]

{ #category : 'update' }
{ #category : 'initialization' }
OPTBorderColoredAsStroke >> updateBorderColorFromStyles [

self roassalShape
Expand Down
4 changes: 2 additions & 2 deletions repository/OpenPonk-Core/OPTColored.trait.st
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ OPTColored >> color [
^ self shouldBeImplemented
]

{ #category : 'update' }
{ #category : 'initialization' }
OPTColored >> updateColorFromStyles [

self roassalShape
Expand All @@ -27,7 +27,7 @@ OPTColored >> updateColorFromStyles [
self roassalShape color: self color
]

{ #category : 'update' }
{ #category : 'initialization' }
OPTColored >> updateRenderFromStyles [

self isRendered ifFalse: [ ^ self ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Trait {
#tag : 'Shapes'
}

{ #category : 'update' }
{ #category : 'initialization' }
OPTColoredAsFillAndBorderColoredAsStroke >> updateRenderFromStyles [

self isRendered ifFalse: [ ^ self ].
Expand Down
2 changes: 1 addition & 1 deletion repository/OpenPonk-Core/OPTColoredAsStroke.trait.st
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Trait {
#tag : 'Shapes'
}

{ #category : 'update' }
{ #category : 'accessing' }
OPTColoredAsStroke >> color [

^ self strokeColor
Expand Down

0 comments on commit 0d0d93f

Please sign in to comment.