From 9a5e2e636c6976344affa4cfe5e15a8e47d051c8 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 21 Dec 2013 04:12:49 +0100 Subject: reduce delay for the --start-with=xxx option (now that the WebKit threads issue has been fixed) --- NEWS | 1 + control-center | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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)); } -- cgit v1.2.1