diff options
-rw-r--r-- | qt-ui/profilegraphics.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp index 7a5630799..3e7cff237 100644 --- a/qt-ui/profilegraphics.cpp +++ b/qt-ui/profilegraphics.cpp @@ -158,7 +158,10 @@ void ProfileGraphicsView::addBookmark() QPoint globalPos = action->data().toPoint(); QPoint viewPos = mapFromGlobal(globalPos); QPointF scenePos = mapToScene(viewPos); - qDebug() << "Add Bookmark"; + int seconds = scenePos.x() / gc.maxx * (gc.rightx - gc.leftx) + gc.leftx; + add_event(current_dc, seconds, SAMPLE_EVENT_BOOKMARK, 0, 0, "bookmark"); + mark_divelist_changed(TRUE); + plot(current_dive, TRUE); } void ProfileGraphicsView::changeGas() |