diff options
author | Willem Ferguson <willemferguson@zoology.up.ac.za> | 2014-04-07 22:15:21 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-04-07 13:24:08 -0700 |
commit | 4c627ddb30d65118c23bb0101afc8ae580d546f8 (patch) | |
tree | 4a4cc2198078d785111c55a28c5610eb190f5953 | |
parent | 3125e0e69513a421c6821d1bd0f545501ede85b1 (diff) | |
download | subsurface-4c627ddb30d65118c23bb0101afc8ae580d546f8.tar.gz |
Change position of heart rate labels on y-axis
The lettering of the heart rate numbers on the lefthand exis "fall off"
the left hand of the profile panel when the panel is a bit narrow. This
minute change moves the letters a bit closer to the Y-axis so that their
left-hand extreme is more or less in line with those of the depth-labels
on the Y-axis. This is a partial response to Ticket # 484.
See #484
Signed-off-by: Willem Ferguson <willemferguson@zoology.up.ac.za>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 1539b5db6..047634e15 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -159,7 +159,7 @@ void ProfileWidget2::setupItemOnScene() gasYAxis->setLineSize(96); heartBeatAxis->setOrientation(DiveCartesianAxis::BottomToTop); - heartBeatAxis->setTickSize(1); + heartBeatAxis->setTickSize(0.2); heartBeatAxis->setTickInterval(10); heartBeatAxis->setFontLabelScale(0.7); heartBeatAxis->setLineSize(96); |