don't show the "stopping currently running capture" dialog, as the packet list seems to have problems updating the screen, so some ugly artefacts remain on the screen.

after I've fixed a bug in the Win32 capture stop mechanism some days(?) before (which speeds up that stopping a lot), this dialog isn't really needed

svn path=/trunk/; revision=16257
This commit is contained in:
Ulf Lamping 2005-10-17 19:46:29 +00:00
parent 93b99abf30
commit fab07a94e0
1 changed files with 7 additions and 0 deletions

View File

@ -1491,6 +1491,12 @@ main_cf_cb_live_capture_fixed_finished(capture_file *cf _U_)
static void
main_cf_cb_live_capture_stopping(capture_file *cf _U_)
{
#if 0
/* XXX - the time to stop the capture has been reduced (this was only a
* problem on Win32 because of the capture piping), so showing a splash
* isn't really necessary any longer. Unfortunately, the GTKClist packet
* list seems to have problems updating after the dialog is closed, so
* this was disabled here. */
stop_dlg = simple_dialog(ESD_TYPE_STOP, ESD_BTN_NONE, "%sCapture stop!%s\n\nPlease wait ...",
simple_dialog_primary_start(), simple_dialog_primary_end());
#if GTK_MAJOR_VERSION >= 2
@ -1498,6 +1504,7 @@ main_cf_cb_live_capture_stopping(capture_file *cf _U_)
#else
gtk_window_set_position(GTK_WINDOW(stop_dlg), GTK_WIN_POS_CENTER);
#endif
#endif
}
#endif