Skip to content

Commit

Permalink
Merge pull request #263 from pharo-spec/dev-1.0
Browse files Browse the repository at this point in the history
fixes
  • Loading branch information
estebanlm authored Jul 13, 2021
2 parents 5d8b80e + 52346c0 commit 32c869d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ StSpotterStyleContributor >> styleSheetContribution [
addPropertyDrawWith: [ :draw | draw color: Color transparent ];
addPropertyTextWith: [ :text | text drawKeyboardFocus: false ];
addPropertyGeometryWith: [ :geometry | geometry minHeight: 35; vResizing: false ];
addPropertyFontWith: [ :font | font size: 12 ] ] ];
addPropertyFontWith: [ :font | font size: (StandardFonts defaultFont pointSize * 1.2) asInteger ] ] ];
addClass: 'text' with: [ :class | class
addClass: 'stSpotterPreview' with: [ :spotter | spotter
addPropertyDrawWith: [ :draw | draw color: Color transparent ] ] ];
Expand Down
7 changes: 7 additions & 0 deletions src/NewTools-Spotter/CmdCommandActivator.extension.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Extension { #name : #CmdCommandActivator }

{ #category : #'*NewTools-Spotter' }
CmdCommandActivator >> evaluateFor: aStSpotter [

self doEvaluate
]

0 comments on commit 32c869d

Please sign in to comment.