summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xcontrol-center4
2 files changed, 4 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7fcfc5f3..2ca441d3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- further delay event for slow machines (mga#10289)
+
Version 12.44 - 16 November 2013 Colin Guthrie
- polkit: only use pkexec when not already root
diff --git a/control-center b/control-center
index fc084b03..61095ec1 100755
--- a/control-center
+++ b/control-center
@@ -1091,11 +1091,11 @@ $SIG{TERM} = \&quit_global;
$window_splash->destroy;
undef $window_splash;
-Glib::Timeout->add(400, sub { $SIG{CHLD} = \&sig_child; sig_child('CHLD', 1); 1 });
+Glib::Timeout->add(600, sub { $SIG{CHLD} = \&sig_child; sig_child('CHLD', 1); 1 });
if ($program) {
if (my $sub = $tool_callbacks{$program}) {
- Glib::Timeout->add(500, sub { $sub->(); 0 });
+ Glib::Timeout->add(700, sub { $sub->(); 0 });
} else {
err_dialog(N("Error"), N("Impossible to run unknown '%s' program", $program));