aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2016-07-22 10:01:03 -0700
committerJeff Morriss <jeff.morriss.ws@gmail.com>2016-07-22 20:54:04 +0000
commit0482b0b0b1ca227619fe487e15d5214b9362c92e (patch)
tree3804017b9b35e7ed27071ed23dc6c5c8d2cee815 /ui
parent24aa839f027f8529f174f9e29ec725f83a04e648 (diff)
Qt: Don't force a repaint in update_progress_dlg.
Remove a call to update() in order to force a repaint for large capture files. Doing so incurs a small-but-nonzero delay on Windows and it should no longer be needed since we switched to timer-based updates in gb5a585c. Change-Id: I01ff2eed165d15dd1d3218550baa664f43dd442a Reviewed-on: https://code.wireshark.org/review/16589 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/progress_frame.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/qt/progress_frame.cpp b/ui/qt/progress_frame.cpp
index 52b8cb63f1..07da92492b 100644
--- a/ui/qt/progress_frame.cpp
+++ b/ui/qt/progress_frame.cpp
@@ -87,9 +87,6 @@ update_progress_dlg(progdlg_t *dlg, gfloat percentage, const gchar *)
* Flush out the update and process any input events.
*/
WiresharkApplication::processEvents();
-
- /* Redraw so the progress bar shows the update */
- dlg->progress_frame->update();
}
/*