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>
This commit is contained in:
Gerald Combs 2016-07-22 10:01:03 -07:00 committed by Jeff Morriss
parent 24aa839f02
commit 0482b0b0b1
1 changed files with 0 additions and 3 deletions

View File

@ -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();
}
/*