summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2016-01-31 11:39:14 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2016-01-31 12:55:28 +0000
commit4fc7423da06a19fe99867a68d2d3fe2de697d29b (patch)
tree197e72dc3ad47db89b11631f910518f8ff1d9f79 /ui
parent96acb62c823f1c9bb0739593419998973fc6d8ea (diff)
downloadwireshark-4fc7423da06a19fe99867a68d2d3fe2de697d29b.tar.gz
RLC LTE: upgrade dissector to v13.0.0
Change-Id: Ibe4586925ffe49f5aaab72956c40e123855a1a1e Reviewed-on: https://code.wireshark.org/review/13620 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/lte_rlc_graph_dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/lte_rlc_graph_dialog.cpp b/ui/qt/lte_rlc_graph_dialog.cpp
index 2327c89e4a..cfad7d3b4c 100644
--- a/ui/qt/lte_rlc_graph_dialog.cpp
+++ b/ui/qt/lte_rlc_graph_dialog.cpp
@@ -413,7 +413,7 @@ void LteRlcGraphDialog::zoomAxes(bool in)
}
else {
// Don't want to zoom out *too* far on y axis.
- if (rp->yAxis->range().size() > (1024+10)) {
+ if (rp->yAxis->range().size() > (65536+10)) {
return;
}
}
@@ -449,7 +449,7 @@ void LteRlcGraphDialog::zoomYAxis(bool in)
}
else {
// Don't want to zoom out *too* far on y axis.
- if (rp->yAxis->range().size() > (1024+10)) {
+ if (rp->yAxis->range().size() > (65536+10)) {
return;
}
}
@@ -469,7 +469,7 @@ void LteRlcGraphDialog::panAxes(int x_pixels, int y_pixels)
double v_pan = 0.0;
// Don't scroll up beyond max range, or below 0
- if (((y_pixels > 0) && (rp->yAxis->range().upper > 1024)) ||
+ if (((y_pixels > 0) && (rp->yAxis->range().upper > 65536)) ||
((y_pixels < 0) && (rp->yAxis->range().lower < 0))) {
return;
}