diff options
Diffstat (limited to '')
-rw-r--r-- | ui/qt/tcp_stream_dialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/qt/tcp_stream_dialog.cpp b/ui/qt/tcp_stream_dialog.cpp index 49980d8d..88f6b757 100644 --- a/ui/qt/tcp_stream_dialog.cpp +++ b/ui/qt/tcp_stream_dialog.cpp @@ -1771,7 +1771,7 @@ void TCPStreamDialog::mouseMoved(QMouseEvent *event) tracer_->setVisible(false); hint += "Hover over the graph for details. " + stream_desc_ + "</i></small>"; ui->hintLabel->setText(hint); - ui->streamPlot->replot(); + ui->streamPlot->replot(QCustomPlot::rpQueuedReplot); return; } @@ -1786,7 +1786,7 @@ void TCPStreamDialog::mouseMoved(QMouseEvent *event) .arg(packet_seg->th_ack) .arg(packet_seg->th_win); tracer_->setGraphKey(ui->streamPlot->xAxis->pixelToCoord(event->pos().x())); - sp->replot(); + sp->replot(QCustomPlot::rpQueuedReplot); } else { if (rubber_band_ && rubber_band_->isVisible() && event) { rubber_band_->setGeometry(QRect(rb_origin_, event->pos()).normalized()); |