summaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/profilewidget2.cpp
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tomaz.canabrava@intel.com>2014-06-27 18:00:42 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-06-27 20:37:11 -0700
commit3f98f024e484764e2bfa648d9eb072ce7472acf6 (patch)
treed04771bf8a78c6f4127e70fedeeff826ac91c9c9 /qt-ui/profile/profilewidget2.cpp
parent259b73335f3ba0597eb2bb21d948d33fcd61bbbe (diff)
downloadsubsurface-3f98f024e484764e2bfa648d9eb072ce7472acf6.tar.gz
Open picture manager when clicking on the picture at the profile
This patch makes the click on pic == open picture browser works also on the profile instead of only on the list view.. 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.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index 66d787242..d8764c461 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -1325,16 +1325,15 @@ void ProfileWidget2::plotPictures()
// information area.
if (!pic->offset.seconds)
continue;
- DivePictureItem *item = new DivePictureItem();
+ DivePictureItem *item = new DivePictureItem(i);
item->setPixmap(m->index(i,0).data(Qt::DecorationRole).value<QPixmap>());
// let's put the picture at the correct time, but at a fixed "depth" on the profile
// not sure this is ideal, but it seems to look right.
x = timeAxis->posAtValue(pic->offset.seconds);
if (i == 0)
y = 10;
- else
- if (fabs(x - lastX) < 4)
- y = lastY + 3;
+ else if (fabs(x - lastX) < 4)
+ y = lastY + 3;
lastX = x;
lastY = y;
item->setPos(x, y);