diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-03-13 08:25:32 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-03-13 10:26:18 -0700 |
commit | 8834fc0443aadfe4e98a2b8db3253a9bf61645f8 (patch) | |
tree | 7c12ecf0c6e00aca283c85d5467e2369d1d1d061 /qt-models/diveplannermodel.cpp | |
parent | 2b5a2352eadfe992319910495cc11a0a83c4a6cd (diff) | |
download | subsurface-8834fc0443aadfe4e98a2b8db3253a9bf61645f8.tar.gz |
Correctly trigger update of cylinder table trash icons in planner
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'qt-models/diveplannermodel.cpp')
-rw-r--r-- | qt-models/diveplannermodel.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index f4b821e6e..26e4fc1ba 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -24,6 +24,7 @@ void DivePlannerPointsModel::removeSelectedPoints(const QVector<int> &rows) divepoints.remove(v2[i]); } endRemoveRows(); + CylindersModel::instance()->updateTrashIcon(); } void DivePlannerPointsModel::createSimpleDive() @@ -314,6 +315,7 @@ bool DivePlannerPointsModel::setData(const QModelIndex &index, const QVariant &v case GAS: if (value.toInt() >= 0 && value.toInt() < MAX_CYLINDERS) p.cylinderid = value.toInt(); + CylindersModel::instance()->updateTrashIcon(); break; } editStop(index.row(), p); @@ -732,6 +734,7 @@ void DivePlannerPointsModel::remove(const QModelIndex &index) divepoints.remove(index.row()); } endRemoveRows(); + CylindersModel::instance()->updateTrashIcon(); } struct diveplan &DivePlannerPointsModel::getDiveplan() |