aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Magahern <james@magahern.com>2019-01-20 16:35:40 -0800
committerJames Magahern <james@magahern.com>2019-01-20 16:35:40 -0800
commit34582ea50a8c62d8c9f9802c4a1531b7ae3b70fa (patch)
treebd03ce69ddf66fd7a26d132aa0ad26d67ad84323
parentAnimation support. Logo animates in and out now (diff)
Cursor fade anim tweak
-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) {