aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render.c b/src/render.c
index a7ff973..fb5b825 100644
--- a/src/render.c
+++ b/src/render.c
@@ -39,7 +39,7 @@ static void update_single_animation(saver_state_t *state, animation_t *anim)
CursorAnimation *ca = &anim->anim.cursor_anim;
if (ca->cursor_animating) {
- const double cursor_fade_speed = 0.01;
+ const double cursor_fade_speed = 0.05;
if (ca->cursor_fade_direction > 0) {
state->cursor_opacity += cursor_fade_speed;
if (state->cursor_opacity > 1.0) {