aboutsummaryrefslogtreecommitdiffstats
path: root/qt-models
diff options
context:
space:
mode:
Diffstat (limited to 'qt-models')
-rw-r--r--qt-models/divelocationmodel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-models/divelocationmodel.cpp b/qt-models/divelocationmodel.cpp
index ae3baf9df..03b5f20fe 100644
--- a/qt-models/divelocationmodel.cpp
+++ b/qt-models/divelocationmodel.cpp
@@ -234,6 +234,9 @@ bool DiveSiteSortedModel::setData(const QModelIndex &index, const QVariant &valu
case LocationInformationModel::NAME:
Command::editDiveSiteName(ds, value.toString());
return true;
+ case LocationInformationModel::DESCRIPTION:
+ Command::editDiveSiteDescription(ds, value.toString());
+ return true;
default:
return false;
}