From 9c7974928bbb2e561367e12b4dce22f0bfb11a66 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Tue, 31 Aug 2021 21:14:55 +0200 Subject: [PATCH] profile: indicate bookmark by pole of flag The event-icons are positioned according to the top-left corner (as is usual in computer circles). For the flag icon it seems more natural to use the bottom of the pole. Signed-off-by: Berthold Stoeger --- profile-widget/diveeventitem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profile-widget/diveeventitem.cpp b/profile-widget/diveeventitem.cpp index a4fb55e3f..3ad5765ab 100644 --- a/profile-widget/diveeventitem.cpp +++ b/profile-widget/diveeventitem.cpp @@ -58,6 +58,7 @@ void DiveEventItem::setupPixmap(struct gasmix lastgasmix, const DivePixmaps &pix setPixmap(pixmaps.onCCRLoop); } else if (ev->type == SAMPLE_EVENT_BOOKMARK) { setPixmap(pixmaps.bookmark); + setOffset(QPointF(0.0, -pixmap().height())); } else if (event_is_gaschange(ev)) { struct gasmix mix = get_gasmix_from_event(dive, ev); struct icd_data icd_data;