diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-28 21:07:39 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-28 21:07:39 -0700 |
commit | b1e50fb157c6c86af28d4beb4e365ec15a08e748 (patch) | |
tree | 187241212b01a471433b2322b92bee5cc27d84be /qt-ui/profile | |
parent | 7f783e2147d4014cd4297316c3c062d8ce3ba3b7 (diff) | |
download | subsurface-b1e50fb157c6c86af28d4beb4e365ec15a08e748.tar.gz |
Profile: change event icon for gaschange
This is not ideal, but it gets us closer to what we need.
Fixes #556
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r-- | qt-ui/profile/diveeventitem.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-ui/profile/diveeventitem.cpp b/qt-ui/profile/diveeventitem.cpp index f20d44e5c..73d58a672 100644 --- a/qt-ui/profile/diveeventitem.cpp +++ b/qt-ui/profile/diveeventitem.cpp @@ -58,12 +58,15 @@ void DiveEventItem::setEvent(struct event *ev) void DiveEventItem::setupPixmap() { #define EVENT_PIXMAP(PIX) QPixmap(QString(PIX)).scaled(20, 20, Qt::KeepAspectRatio, Qt::SmoothTransformation) +#define EVENT_PIXMAP_BIGGER(PIX) QPixmap(QString(PIX)).scaled(30, 28, Qt::KeepAspectRatio, Qt::SmoothTransformation) if (!internalEvent->name) { setPixmap(EVENT_PIXMAP(":warning")); } else if (internalEvent->type == SAMPLE_EVENT_BOOKMARK) { setPixmap(EVENT_PIXMAP(":flag")); } else if (strcmp(internalEvent->name, "heading") == 0) { setPixmap(EVENT_PIXMAP(":flag")); + } else if (internalEvent->type == SAMPLE_EVENT_GASCHANGE || internalEvent->type == SAMPLE_EVENT_GASCHANGE2) { + setPixmap(EVENT_PIXMAP_BIGGER(":gaschange")); } else { setPixmap(EVENT_PIXMAP(":warning")); } |