diff options
| author | Johan Dahlin <johan@src.gnome.org> | 2006-09-06 15:51:15 +0000 |
|---|---|---|
| committer | Johan Dahlin <johan@src.gnome.org> | 2006-09-06 15:51:15 +0000 |
| commit | 10cf507b6dbbc85113e3ff3f189ffa43ce400580 (patch) | |
| tree | c2e1ae4dccc951010b0aca94776b5c41c07897b4 /gobject | |
| parent | efd627d6486f9fb5d44e08d90180ac2d919c5cda (diff) | |
| download | pygobject-10cf507b6dbbc85113e3ff3f189ffa43ce400580.tar.gz pygobject-10cf507b6dbbc85113e3ff3f189ffa43ce400580.tar.xz pygobject-10cf507b6dbbc85113e3ff3f189ffa43ce400580.zip | |
Increase the timeout to 1000ms instead of 100.
* gobject/pygmainloop.c (pyg_signal_watch_prepare): Increase the timeout
to 1000ms instead of 100.
Diffstat (limited to 'gobject')
| -rw-r--r-- | gobject/pygmainloop.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
