Skip to content

Commit

Permalink
add GtInspectorRoundButtonStencil's #mini and tiny methods [fee…
Browse files Browse the repository at this point in the history
  • Loading branch information
JurajKubelka committed Sep 26, 2024
1 parent dce9431 commit da7c9d9
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Brick-Glamorous/GtInspectorRoundButtonStencil.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ GtInspectorRoundButtonStencil class >> large [
^ self new size: 24@24
]

{ #category : #'instance creation' }
GtInspectorRoundButtonStencil class >> mini [
^ self new size: 10 @ 10
]

{ #category : #'instance creation' }
GtInspectorRoundButtonStencil class >> normal [
^ self new size: 20@20
Expand All @@ -22,6 +27,11 @@ GtInspectorRoundButtonStencil class >> small [
^ self new size: 16@16
]

{ #category : #'instance creation' }
GtInspectorRoundButtonStencil class >> tiny [
^ self new size: 12 @ 12
]

{ #category : #'api - instantiation' }
GtInspectorRoundButtonStencil >> create [
^ BrButton new
Expand Down

0 comments on commit da7c9d9

Please sign in to comment.