summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2013-12-13 17:17:11 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2013-12-13 17:17:11 +0100
commit6594483a9d5fa2ae747642986d12ba5dbdf28413 (patch)
treea6feb67dd6a42d6be06bf24a444d58fac16bad3e
parentf64d3b3cacabf74879bc358d24f08cd8bd368fba (diff)
downloadcontrol-center-6594483a9d5fa2ae747642986d12ba5dbdf28413.tar
control-center-6594483a9d5fa2ae747642986d12ba5dbdf28413.tar.gz
control-center-6594483a9d5fa2ae747642986d12ba5dbdf28413.tar.bz2
control-center-6594483a9d5fa2ae747642986d12ba5dbdf28413.tar.xz
control-center-6594483a9d5fa2ae747642986d12ba5dbdf28413.zip
further delay event for slow machines (mga#10289)
-rwxr-xr-xcontrol-center4
1 files changed, 2 insertions, 2 deletions
diff --git a/control-center b/control-center
index 61095ec1..642032aa 100755
--- a/control-center
+++ b/control-center
@@ -1091,11 +1091,11 @@ $SIG{TERM} = \&quit_global;
$window_splash->destroy;
undef $window_splash;
-Glib::Timeout->add(600, sub { $SIG{CHLD} = \&sig_child; sig_child('CHLD', 1); 1 });
+Glib::Timeout->add(1000, sub { $SIG{CHLD} = \&sig_child; sig_child('CHLD', 1); 1 });
if ($program) {
if (my $sub = $tool_callbacks{$program}) {
- Glib::Timeout->add(700, sub { $sub->(); 0 });
+ Glib::Timeout->add(1100, sub { $sub->(); 0 });
} else {
err_dialog(N("Error"), N("Impossible to run unknown '%s' program", $program));