Skip to content

Commit

Permalink
do not display Z index if z = 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyan11 committed Dec 15, 2023
1 parent 23fffb2 commit 33f6371
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Pyramid-Bloc/PyramidTreePlugin.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -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
]
Expand Down

0 comments on commit 33f6371

Please sign in to comment.