diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gobject/pygmainloop.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2006-09-06 Johan Dahlin <jdahlin@async.com.br> + + * gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout + to 1000ms instead of 100. + === 2.12.1 === 2006-09-04 Johan Dahlin <jdahlin@async.com.br> diff --git a/gobject/pygmainloop.c b/gobject/pygmainloop.c index 5453240..66fc952 100644 --- a/gobject/pygmainloop.c +++ b/gobject/pygmainloop.c @@ -117,7 +117,7 @@ pyg_signal_watch_prepare(GSource *source, #ifndef PLATFORM_WIN32 if (pyg_threads_enabled) #endif - *timeout = 100; + *timeout = 1000; return FALSE; } |