From ced16ab85c20230dbb7b95fb50fa142743de8bdd Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 13 Jul 2006 06:01:55 +0000 Subject: [PATCH] increased timeout to 5 seconds (bug #347345). 2006-07-13 Sven Neumann * tools/gimp-remote.c: increased timeout to 5 seconds (bug #347345). --- ChangeLog | 4 ++++ tools/gimp-remote.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index def3376dbd..c2500a232e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-07-13 Sven Neumann + + * tools/gimp-remote.c: increased timeout to 5 seconds (bug #347345). + 2006-07-12 Sven Neumann * plug-ins/bmp/bmp.[ch] diff --git a/tools/gimp-remote.c b/tools/gimp-remote.c index bd9f0045ae..238894ac73 100644 --- a/tools/gimp-remote.c +++ b/tools/gimp-remote.c @@ -482,10 +482,10 @@ main (gint argc, * terminated. If the Toolbox is simply unmapped (by the WM) * DnD works. But in both cases gdk_window_is_visible() returns * FALSE. To work around this we add a timeout and abort after - * 1.5 seconds. + * 5 seconds. */ - timeout = g_timeout_add (1500, toolbox_hidden, NULL); + timeout = g_timeout_add (5000, toolbox_hidden, NULL); /* set up an DND-source */ source = gtk_window_new (GTK_WINDOW_TOPLEVEL);