Skip to content

Commit

Permalink
fix still broken compatibility with previous Roassal
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Raglianti committed Feb 23, 2024
1 parent 08ecab4 commit 94469fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Vizor-GUI/VZComponent.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ VZComponent >> monitor [
{ #category : #showing }
VZComponent >> openWithSpec [
"For compatibility with older version of Roassal"
self open.
((((Smalltalk version splitOn: $.) at: 1) withoutPrefix: 'Pharo') asInteger >= 11)
ifTrue: [ self open. ]
ifFalse: [ super openWithSpec. ].
]

{ #category : #dependencies }
Expand Down

0 comments on commit 94469fe

Please sign in to comment.