diff --git a/src/Pyramid-Bloc/PyramidTreePlugin.class.st b/src/Pyramid-Bloc/PyramidTreePlugin.class.st index c629c88a..720331c0 100644 --- a/src/Pyramid-Bloc/PyramidTreePlugin.class.st +++ b/src/Pyramid-Bloc/PyramidTreePlugin.class.st @@ -78,7 +78,9 @@ PyramidTreePlugin class >> columnZIndex: aPyramidTreePlugin [ ^ SpStringTableColumn new title: 'z'; evaluated: [ :aBlElement | - aBlElement elevation elevation printString ]; + aBlElement elevation elevation = 0 + ifTrue: [ '' ] + ifFalse: [ aBlElement elevation elevation printString ] ]; width: 16; yourself ]