diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-21 04:12:49 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-12-21 04:12:56 +0100 |
commit | 9a5e2e636c6976344affa4cfe5e15a8e47d051c8 (patch) | |
tree | 84146b0e55c6d741f9daae030538b6759d71adfa | |
parent | e85260db68e9478b56dfe9034ea8dece91d30f7a (diff) | |
download | control-center-9a5e2e636c6976344affa4cfe5e15a8e47d051c8.tar control-center-9a5e2e636c6976344affa4cfe5e15a8e47d051c8.tar.gz control-center-9a5e2e636c6976344affa4cfe5e15a8e47d051c8.tar.bz2 control-center-9a5e2e636c6976344affa4cfe5e15a8e47d051c8.tar.xz control-center-9a5e2e636c6976344affa4cfe5e15a8e47d051c8.zip |
reduce delay for the --start-with=xxx option
(now that the WebKit threads issue has been fixed)
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | control-center | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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)); } |