From 34582ea50a8c62d8c9f9802c4a1531b7ae3b70fa Mon Sep 17 00:00:00 2001 From: James Magahern Date: Sun, 20 Jan 2019 16:35:40 -0800 Subject: Cursor fade anim tweak --- src/render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3