cabana: fix crash in BinaryView::refresh (#27318)

pull/27327/head
Dean Lee 2 years ago committed by GitHub
parent 38cf0b8382
commit fff6e8baf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tools/cabana/binaryview.cc

@ -143,8 +143,8 @@ void BinaryView::refresh() {
anchor_index = QModelIndex(); anchor_index = QModelIndex();
resize_sig = nullptr; resize_sig = nullptr;
hovered_sig = nullptr; hovered_sig = nullptr;
highlightPosition(QCursor::pos());
model->refresh(); model->refresh();
highlightPosition(QCursor::pos());
} }
QSet<const Signal *> BinaryView::getOverlappingSignals() const { QSet<const Signal *> BinaryView::getOverlappingSignals() const {

Loading…
Cancel
Save