diff options
Diffstat (limited to 'qt-models/cylindermodel.cpp')
-rw-r--r-- | qt-models/cylindermodel.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qt-models/cylindermodel.cpp b/qt-models/cylindermodel.cpp index fe63cf6f2..59d993374 100644 --- a/qt-models/cylindermodel.cpp +++ b/qt-models/cylindermodel.cpp @@ -18,6 +18,15 @@ CylindersModel::CylindersModel(QObject *parent) : } +QVariant CylindersModel::headerData(int section, Qt::Orientation orientation, int role) const +{ + if (role == Qt::DisplayRole && in_planner() && section == WORKINGPRESS) + return tr("Start press."); + else + return CleanerTableModel::headerData(section, orientation, role); +} + + CylindersModel *CylindersModel::instance() { |