summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rwxr-xr-xcontrol-center2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index e847f3da..b50cc5e8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,5 @@
- fix segfault when webkit creates threads for good (mga#10289)
+- reduce delay for the --start-with=xxx option
Version 12.45 - 12 December 2013 Thierry Vignaud
diff --git a/control-center b/control-center
index f77c0681..67139430 100755
--- a/control-center
+++ b/control-center
@@ -1106,7 +1106,7 @@ Gtk2->main;
sub load_program() {
if (my $sub = $tool_callbacks{$program}) {
- Glib::Timeout->add(1100, sub { $sub->(); 0 });
+ Glib::Timeout->add(100, sub { $sub->(); 0 });
} else {
err_dialog(N("Error"), N("Impossible to run unknown '%s' program", $program));
}