aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Young <jyoung@gsu.edu>2015-11-15 02:49:57 -0500
committerGerald Combs <gerald@wireshark.org>2015-11-16 16:50:13 +0000
commitbf8ec76d404a769cde54e9cc3f5443979e374e7c (patch)
treed98777f304b5bc9c683cfc49085bc6af23cd364c
parentfc51af45e65b534fa52c5519e23a7250ada195be (diff)
Qt iograph: Trigger graph refresh when time-of-day checkbox is toggeled.
Bug: 11692 Change-Id: I2d9d17d3474210b5eb73002e131867d936426e36 Reviewed-on: https://code.wireshark.org/review/11837 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
-rw-r--r--ui/qt/io_graph_dialog.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/qt/io_graph_dialog.cpp b/ui/qt/io_graph_dialog.cpp
index 2e6da60e39..6b870c9ec9 100644
--- a/ui/qt/io_graph_dialog.cpp
+++ b/ui/qt/io_graph_dialog.cpp
@@ -1182,6 +1182,7 @@ void IOGraphDialog::on_todCheckBox_toggled(bool checked)
auto_axes_ = orig_auto;
getGraphInfo();
ui->ioPlot->xAxis->moveRange(start_time_ - orig_start);
+ mouseMoved(NULL); // Update hint
}
void IOGraphDialog::on_graphTreeWidget_currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *previous)