summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--gobject/pygmainloop.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 881f96e..5090e53 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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;
}