diff --git a/src/Vizor-GUI/VZComponent.class.st b/src/Vizor-GUI/VZComponent.class.st index 4acf579..9c9495c 100644 --- a/src/Vizor-GUI/VZComponent.class.st +++ b/src/Vizor-GUI/VZComponent.class.st @@ -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 }