Renaming Session Group to Session Bundles and Session Child

For the user interface, use the term 'Bundle' and 'Child' session instead of Group.
This commit is contained in:
Bruno Herbelin
2023-02-15 22:27:14 +01:00
parent 1dd2151a20
commit e2e316a079
4 changed files with 11 additions and 11 deletions

View File

@@ -159,7 +159,7 @@ void InfoVisitor::visit (SessionFileSource& s)
}
else {
oss << s.path() << std::endl;
oss << "MIX session (" << numsource << "), RGB" << std::endl;
oss << "Child session (" << numsource << "), RGB" << std::endl;
oss << s.session()->frame()->width() << " x " << s.session()->frame()->height();
}
}
@@ -175,7 +175,7 @@ void InfoVisitor::visit (SessionGroupSource& s)
std::ostringstream oss;
if (!brief_) oss << "Group of ";
if (!brief_) oss << "Bundle of ";
uint N = s.session()->size();
oss << N << " source" << (N>1 ? "s" : "");
uint T = s.session()->numSources();