diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-01 10:48:26 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-03-01 10:48:26 +0000 |
commit | 818956c6502dc3ecd4d4d52d769be187e76f4f0a (patch) | |
tree | 85b4216e8f953658582c82ae2b7ed5d3fc891695 | |
parent | f8f067c263b45bfc1ac85eff02d879aab099df8f (diff) | |
download | control-center-818956c6502dc3ecd4d4d52d769be187e76f4f0a.tar control-center-818956c6502dc3ecd4d4d52d769be187e76f4f0a.tar.gz control-center-818956c6502dc3ecd4d4d52d769be187e76f4f0a.tar.bz2 control-center-818956c6502dc3ecd4d4d52d769be187e76f4f0a.tar.xz control-center-818956c6502dc3ecd4d4d52d769be187e76f4f0a.zip |
(compute_exec_string) slow down color fading
-rwxr-xr-x | control-center | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/control-center b/control-center index 6066b644..aed3a52f 100755 --- a/control-center +++ b/control-center @@ -873,7 +873,7 @@ sub compute_exec_string { [ $color->blue, $bg->blue ]); if ($wait_darea->{not_yet_complete} && any { $_->[0] != $_->[1] } @colors) { $wait_darea->window->set_background($color); - $wait_darea->{color} = gtkcolor(map { $_->[0] - min(500, $_->[0] - $_->[1]) } @colors); + $wait_darea->{color} = gtkcolor(map { $_->[0] - min(300, $_->[0] - $_->[1]) } @colors); $wait_darea->queue_draw; } elsif ($wait_darea->{not_yet_complete}) { # set exact color |