more tweaks to the IO Selector

git-svn-id: svn://localhost/ardour2/branches/3.0@3840 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-09-30 14:18:15 +00:00
parent 9a30bb2aec
commit caa305ed2b
10 changed files with 169 additions and 132 deletions

View file

@ -81,7 +81,7 @@ std::string
BundleEditorMatrix::row_name (int r) const
{
std::stringstream s;
s << r;
s << r + 1; // 1-based counting
return s.str();
}