diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-06-20 11:07:00 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-06-20 11:07:09 -0700 |
commit | d941384fb69ba7d9c6b040d3371e2957053cd936 (patch) | |
tree | a62f5440e704343efbbad7521fb412094e0f2430 | |
parent | 4a2e21cf7bd0ba44f4fea265c0908252951f2eb1 (diff) | |
download | subsurface-d941384fb69ba7d9c6b040d3371e2957053cd936.tar.gz |
QML UI: DiveDetailsView: don't underline location
Davide points out that this is not a commonly understood way in an app
to indicate that a text is also a link. So let's just remove that (but
tapping on the location will still work to get you to the map if there
is GPS information available).
See #431
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index 330f36a4e..3454259d8 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -44,7 +44,6 @@ Item { id: detailsViewHeading Layout.fillWidth: true text: dive.location - font.underline: dive.gps !== "" Layout.columnSpan: 4 wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere Layout.topMargin: Kirigami.Units.largeSpacing |