summaryrefslogtreecommitdiffstats
path: root/desktop-widgets
diff options
context:
space:
mode:
authorGravatar Stefan Fuchs <sfuchs@gmx.de>2018-02-17 20:05:11 +0100
committerGravatar Lubomir I. Ivanov <neolit123@gmail.com>2018-02-17 19:48:50 -0800
commite7ae749d52443d36aa2a71b27ba7093a41e25309 (patch)
tree56a40c7349e52e4b45ca8e556cad0b7bf872d31d /desktop-widgets
parent5c248d91cd5b7e9401e4393b2193ad44c32016bc (diff)
downloadsubsurface-e7ae749d52443d36aa2a71b27ba7093a41e25309.tar.gz
Consistently use the famous l for liters in info tab
For salinity in info tab change the l character to the famous Subsurface "ℓ". Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'desktop-widgets')
-rw-r--r--desktop-widgets/tab-widgets/TabDiveInformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/tab-widgets/TabDiveInformation.cpp b/desktop-widgets/tab-widgets/TabDiveInformation.cpp
index ae3998ed8..097e8f0e4 100644
--- a/desktop-widgets/tab-widgets/TabDiveInformation.cpp
+++ b/desktop-widgets/tab-widgets/TabDiveInformation.cpp
@@ -95,7 +95,7 @@ void TabDiveInformation::updateData()
ui->airPressureText->clear();
if (displayed_dive.salinity)
- ui->salinityText->setText(QString("%1g/l").arg(displayed_dive.salinity / 10.0));
+ ui->salinityText->setText(QString("%1g/ℓ").arg(displayed_dive.salinity / 10.0));
else
ui->salinityText->clear();