summaryrefslogtreecommitdiffstats
path: root/qt-ui/maintab.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-01 15:38:08 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-02 06:50:50 -0700
commit80f26912b070328806436fbd3d1d4a37a56e4bb6 (patch)
treeb4451979025bb2810556b5ed46252a4576c6ba2a /qt-ui/maintab.cpp
parentb42bae2ce8b665c45020f53ef8b494dffc086d38 (diff)
downloadsubsurface-80f26912b070328806436fbd3d1d4a37a56e4bb6.tar.gz
Notes pane: move the location taxonomy to a better spot
And display it smaller, marked as "tags". Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/maintab.cpp')
-rw-r--r--qt-ui/maintab.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp
index b5981c977..688927cb6 100644
--- a/qt-ui/maintab.cpp
+++ b/qt-ui/maintab.cpp
@@ -501,6 +501,7 @@ void MainTab::updateDiveInfo(bool clear)
// construct the location tags
QString locationTag;
if (ds->taxonomy.nr) {
+ locationTag = "<small><small>(tags: ";
QString connector = "";
for (int i = 0; i < 3; i++) {
qDebug() << "looking for category" << prefs.geocoding.category[i];
@@ -513,6 +514,7 @@ void MainTab::updateDiveInfo(bool clear)
}
}
}
+ locationTag += ")</small></small>";
}
ui.location->setText(ds->name);
ui.locationTags->setText(locationTag);