diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 10:22:08 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 10:22:08 -0700 |
commit | 9c3b512701c59955350f317eb6d19e6fdc93f546 (patch) | |
tree | e52e2cfd54e54f814f01aab5a99c9c631df1eda3 /qt-ui/maintab.cpp | |
parent | 56c58bdd24451352e1f2a538c145f865b2546ac2 (diff) | |
parent | f73660cc0916bd52adfeaeb97c836176431b7d97 (diff) | |
download | subsurface-9c3b512701c59955350f317eb6d19e6fdc93f546.tar.gz |
Merge branch 'comboBoxDelegate' of https://github.com/tcanabrava/subsurface
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r-- | qt-ui/maintab.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index a52058816..c172deeea 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -12,6 +12,7 @@ #include "../helpers.h" #include "../statistics.h" #include "divelistview.h" +#include "modeldelegates.h" #include <QLabel> #include <QDebug> @@ -81,6 +82,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), ui->cylinders->setColumnWidth( CylindersModel::REMOVE, 24); ui->cylinders->horizontalHeader()->setResizeMode (CylindersModel::REMOVE , QHeaderView::Fixed); + ui->cylinders->setItemDelegateForColumn(CylindersModel::TYPE, new TankInfoDelegate()); ui->weights->setColumnWidth( WeightModel::REMOVE, 24); ui->cylinders->horizontalHeader()->setResizeMode (WeightModel::REMOVE , QHeaderView::Fixed); } |