diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-02-15 22:43:27 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-15 17:30:25 -0800 |
commit | 883b25cea30727aac641f2809a14da38e2eb3e96 (patch) | |
tree | 551aa240286989dd28d6b180b4ca692b505da62a /qt-ui/profile/profilewidget2.cpp | |
parent | 38e25458ee9b92ecf170a458ec442d3e362ee5dc (diff) | |
download | subsurface-883b25cea30727aac641f2809a14da38e2eb3e96.tar.gz |
Create the grids.
Create the grids, and the way that they move is fabulous <3
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 088cfba1f..e68b543fb 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -124,6 +124,9 @@ void ProfileWidget2::setupItemOnScene() profileYAxis->setMinimum(0); profileYAxis->setTickInterval(M_OR_FT(10,30)); profileYAxis->setTickSize(1); + profileYAxis->setLineSize(96); + + timeAxis->setLineSize(96); gasYAxis->setOrientation(DiveCartesianAxis::BottomToTop); gasYAxis->setTickInterval(1); @@ -131,6 +134,7 @@ void ProfileWidget2::setupItemOnScene() gasYAxis->setMinimum(0); gasYAxis->setModel(dataModel); gasYAxis->setFontLabelScale(0.7); + gasYAxis->setLineSize(96); temperatureAxis->setOrientation(DiveCartesianAxis::BottomToTop); temperatureAxis->setTickSize(2); |