[Summary] Per Igor's request fixed up region channel config label when there is no source file.

This commit is contained in:
GZharun 2015-02-08 18:50:29 +02:00
parent 483c04b2c7
commit 81fc3532ea

View file

@ -373,6 +373,9 @@ AudioRegionView::update_ioconfig_label ()
std::string label;
switch (chan_count ) {
case 0:
label = "N/A";
break;
case 1:
label = "M";
break;