Skip to content
Snippets Groups Projects

Monteverdi: fix band numbering in color setup widget

Merged Victor Poughon requested to merge mvd_band_index into develop
2 files
+ 1
16
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -171,7 +171,7 @@ AbstractImageModel
count++)
{
std::ostringstream oss;
oss <<ToStdString( tr("BAND ") )<< count;
oss <<ToStdString( tr("BAND ") )<< count + 1;
outputBandNames.push_back(oss.str());
}
Loading