mirror of https://github.com/GNOME/gimp.git
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:
parent
49220b8bf6
commit
ced16ab85c
|
@ -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>
|
2006-07-12 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* plug-ins/bmp/bmp.[ch]
|
* plug-ins/bmp/bmp.[ch]
|
||||||
|
|
|
@ -482,10 +482,10 @@ main (gint argc,
|
||||||
* terminated. If the Toolbox is simply unmapped (by the WM)
|
* terminated. If the Toolbox is simply unmapped (by the WM)
|
||||||
* DnD works. But in both cases gdk_window_is_visible() returns
|
* DnD works. But in both cases gdk_window_is_visible() returns
|
||||||
* FALSE. To work around this we add a timeout and abort after
|
* 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 */
|
/* set up an DND-source */
|
||||||
source = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
source = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||||
|
|
Loading…
Reference in New Issue