Skip to content

Commit

Permalink
Node: info panel now also displays channels
Browse files Browse the repository at this point in the history
  • Loading branch information
devernay committed Aug 13, 2017
1 parent 2a73039 commit c9b0375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/Node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3326,7 +3326,7 @@ Node::makeInfoForInput(int inputNumber) const
}
for (std::list<ImagePlaneDesc>::iterator it = availableLayers.begin(); it != availableLayers.end(); ++it) {

ss << " " << it->getPlaneLabel();
ss << " " << it->getPlaneLabel() << '.' << it->getChannelsLabel();
if ( next != availableLayers.end() ) {
ss << ", ";
++next;
Expand Down

0 comments on commit c9b0375

Please sign in to comment.