From 2d68214eac604c104226e2638161c0e4fd14fc79 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 17 Sep 2015 15:27:49 -0700 Subject: Planner: show new icon to indicate that last point can't be deleted Having the trash can disappear is somewhat intuitive, but I'd argue this is even more so. Fixes #789 Signed-off-by: Dirk Hohndel --- qt-models/diveplannermodel.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'qt-models/diveplannermodel.cpp') diff --git a/qt-models/diveplannermodel.cpp b/qt-models/diveplannermodel.cpp index 005061feb..cb221a0ad 100644 --- a/qt-models/diveplannermodel.cpp +++ b/qt-models/diveplannermodel.cpp @@ -218,12 +218,16 @@ QVariant DivePlannerPointsModel::data(const QModelIndex &index, int role) const case REMOVE: if (rowCount() > 1) return p.entered ? trashIcon() : QVariant(); + else + return trashForbiddenIcon(); } } else if (role == Qt::SizeHintRole) { switch (index.column()) { case REMOVE: if (rowCount() > 1) return p.entered ? trashIcon().size() : QVariant(); + else + return trashForbiddenIcon().size(); } } else if (role == Qt::FontRole) { if (divepoints.at(index.row()).entered) { -- cgit v1.2.3-70-g09d2