No custom attributes for heal events

This commit is contained in:
Marcus Huderle 2019-02-03 14:05:57 -06:00 committed by huderlem
parent c4ad0971d0
commit 02d6ed3cff

View file

@ -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);
}