From 02d6ed3cff31311a30f8f5082a48c645e2321071 Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Sun, 3 Feb 2019 14:05:57 -0600 Subject: [PATCH] No custom attributes for heal events --- src/mainwindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c026489b8..d24b298f7 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1378,8 +1378,10 @@ void MainWindow::updateSelectedObjects() { } // Custom fields table. - CustomAttributesTable *customAttributes = new CustomAttributesTable(item->event, frame); - frame->layout()->addWidget(customAttributes); + if (event_type != EventType::HealLocation) { + CustomAttributesTable *customAttributes = new CustomAttributesTable(item->event, frame); + frame->layout()->addWidget(customAttributes); + } frames.append(frame); }