From f14ccc2f63cdb0eedaa02f18c7cd4ba56a861c4f Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Tue, 20 Sep 2005 08:18:41 +0000 Subject: [PATCH] if the capture child pops up it's own console, title it as such svn path=/trunk/; revision=15889 --- gtk/main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gtk/main.c b/gtk/main.c index f76d7a5d04..bb54ad893b 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -2604,8 +2604,11 @@ create_console(void) the message(s) we put in there). */ atexit(destroy_console); - SetConsoleTitle("Ethereal Debug Console"); - + if(capture_child) { + SetConsoleTitle("Ethereal Capture Child Debug Console"); + } else { + SetConsoleTitle("Ethereal Debug Console"); + } } }