From c9b03753136c740fdcf6590bb51bc01b64c9105d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Devernay?= Date: Sun, 13 Aug 2017 17:26:35 +0200 Subject: [PATCH] Node: info panel now also displays channels --- Engine/Node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/Node.cpp b/Engine/Node.cpp index 15a7c71990..d9b8e1c3ff 100644 --- a/Engine/Node.cpp +++ b/Engine/Node.cpp @@ -3326,7 +3326,7 @@ Node::makeInfoForInput(int inputNumber) const } for (std::list::iterator it = availableLayers.begin(); it != availableLayers.end(); ++it) { - ss << " " << it->getPlaneLabel(); + ss << " " << it->getPlaneLabel() << '.' << it->getChannelsLabel(); if ( next != availableLayers.end() ) { ss << ", "; ++next;