increased timeout to 5 seconds (bug #347345).

2006-07-13  Sven Neumann  <sven@gimp.org>

	* tools/gimp-remote.c: increased timeout to 5 seconds (bug
#347345).
This commit is contained in:
Sven Neumann 2006-07-13 06:01:55 +00:00 committed by Sven Neumann
parent 49220b8bf6
commit ced16ab85c
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2006-07-13 Sven Neumann <sven@gimp.org>
* tools/gimp-remote.c: increased timeout to 5 seconds (bug #347345).
2006-07-12 Sven Neumann <sven@gimp.org>
* plug-ins/bmp/bmp.[ch]

View File

@ -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);