mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 21:36:16 +00:00
Adds missing "EndPress" column header for cylinder table
The end pressure was appearing in the column headed "O2" Signed-off-by: Tim Wootton <tim@tee-jay.demon.co.uk> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
5b72348eff
commit
a014fb1099
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ void CleanerTableModel::setHeaderDataStrings(const QStringList& newHeaders)
|
|||
CylindersModel::CylindersModel(QObject* parent): current(0), rows(0)
|
||||
{
|
||||
// enum{REMOVE, TYPE, SIZE, WORKINGPRESS, START, END, O2, HE,};
|
||||
setHeaderDataStrings( QStringList() << "" << tr("Type") << tr("Size") << tr("WorkPress") << tr("StartPress") << tr("O2%") << tr("HE"));
|
||||
setHeaderDataStrings( QStringList() << "" << tr("Type") << tr("Size") << tr("WorkPress") << tr("StartPress") << tr("EndPress") << tr("O2%") << tr("HE"));
|
||||
}
|
||||
|
||||
static QVariant percent_string(fraction_t fraction)
|
||||
|
|
Loading…
Add table
Reference in a new issue