Skip to content

Commit

Permalink
Merge pull request #830 from david-hall/show-label
Browse files Browse the repository at this point in the history
  • Loading branch information
vorth authored Mar 17, 2024
2 parents d8dbdb2 + 3d0ec82 commit d98ea63
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 d98ea63

Please sign in to comment.