#1081 Snapshot : Row numbering starts at 1

This commit is contained in:
Magne Sjaastad 2017-01-16 23:07:22 +01:00
parent 2292debc6b
commit 7ee5fe321b

View File

@ -121,7 +121,7 @@ QVariant PdmUiTableViewModel::headerData(int section, Qt::Orientation orientatio
}
else if (orientation == Qt::Vertical)
{
return section;
return section + 1;
}
}