aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-02-14 22:04:18 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-14 21:50:05 -0800
commite49bd86f5e6d96161eb2518f23ce64f7969a4375 (patch)
treefcfd3e7813c6a768a67346d0ced781331c436bef /qt-ui
parent822ed2062542e830ade32e83c88f481eb3464b5a (diff)
downloadsubsurface-e49bd86f5e6d96161eb2518f23ce64f7969a4375.tar.gz
Align Right side of Cylinder Pressure Text to the Left.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/profile/diveprofileitem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveprofileitem.cpp b/qt-ui/profile/diveprofileitem.cpp
index 3c9191f46..a07132fbb 100644
--- a/qt-ui/profile/diveprofileitem.cpp
+++ b/qt-ui/profile/diveprofileitem.cpp
@@ -355,7 +355,7 @@ void DiveGasPressureItem::modelDataChanged(const QModelIndex& topLeft, const QMo
for (cyl = 0; cyl < MAX_CYLINDERS; cyl++) {
if (last_time[cyl]) {
- plot_pressure_value(last_pressure[cyl], last_time[cyl], Qt::AlignRight | Qt::AlignTop);
+ plot_pressure_value(last_pressure[cyl], last_time[cyl], Qt::AlignLeft | Qt::AlignTop);
}
}
}