diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-05-11 07:13:01 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-14 12:57:08 -0700 |
commit | 4db79c8db9453a28b5e26315baae7d1f5315b68a (patch) | |
tree | 64ccf8512e00a019bb2bb6ff3e48d361b0944f75 /qt-models/mobilelistmodel.cpp | |
parent | 6f96edd766e4f782b0d7ed8cf960a097860b0c7f (diff) | |
download | subsurface-4db79c8db9453a28b5e26315baae7d1f5315b68a.tar.gz |
mobile/models: add access to tags string
We already allow filtering by tags, but don't even show them on mobile.
That seems rather inconsistent.
First step is to make the tags available to the QML layer.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-models/mobilelistmodel.cpp')
-rw-r--r-- | qt-models/mobilelistmodel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-models/mobilelistmodel.cpp b/qt-models/mobilelistmodel.cpp index 17ec252d7..cf1db1860 100644 --- a/qt-models/mobilelistmodel.cpp +++ b/qt-models/mobilelistmodel.cpp @@ -33,6 +33,7 @@ QHash<int, QByteArray> MobileListModelBase::roleNames() const roles[SumWeightRole] = "sumWeight"; roles[DiveMasterRole] = "diveMaster"; roles[BuddyRole] = "buddy"; + roles[TagsRole] = "tags"; roles[NotesRole]= "notes"; roles[GpsRole] = "gps"; roles[GpsDecimalRole] = "gpsDecimal"; |