Skip to content

Commit

Permalink
Show non-null labels in properties dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
david-hall committed Mar 17, 2024
1 parent ac24f8d commit 3d0ec82
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1654,6 +1654,12 @@ public String getManifestationProperty( Manifestation pickedManifestation, Strin
buf.append("\n\ncolor (RGB): ");
buf.append(man.getColor().toString());

String label = man.getLabel();
if(label != null) {
buf.append("\n\nlabel: ");
buf.append(label);
}

if( devExtras) {
if( zone != null) {
buf.append( "\n\nzone: " + zone .toString() );
Expand Down

0 comments on commit 3d0ec82

Please sign in to comment.