Skip to content

Commit

Permalink
No custom attributes for heal events
Browse files Browse the repository at this point in the history
  • Loading branch information
huderlem committed Feb 5, 2019
1 parent c4ad097 commit 02d6ed3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 02d6ed3

Please sign in to comment.