Skip to content

Commit

Permalink
Character limit on collection value morphs shortened to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeAtHPI committed Aug 15, 2023
1 parent 853ebfd commit eb96939
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/Sandblocks-Babylonian/Collection.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ Extension { #name : #Collection }
Collection >> sbWatchValueMorphFor: traceValue [

^ (SBWatchValue newContainerMorphFor: traceValue)
addMorph: (SBStringMorph new contents: self printString)
addMorph: (SBStringMorph new contents: (self printStringLimitedTo: 1000));
yourself
]
2 changes: 1 addition & 1 deletion packages/Sandblocks-Watch/SBWatchView.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ SBWatchView >> reportValue: anObject [
{ #category : #accessing }
SBWatchView >> scrollBarHeight [

^ 5 sbScaled
^ 7 sbScaled
]

{ #category : #accessing }
Expand Down

0 comments on commit eb96939

Please sign in to comment.