summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2014-05-22 22:41:34 +0200
committerKristian Høgsberg <krh@bitplanet.net>2014-06-18 17:14:40 -0700
commit7e7d48516488c6858b41bb281a5de9efca337cd9 (patch)
treed227de640045f8ef048b569cf8cbca5491a6e564
parentf8bfd0581b37449a5e91d8b190f8a5bbde6bca1e (diff)
desktop-shell: make background applications less dark
-rw-r--r--desktop-shell/shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c
index 46c6e18a..48b9faf4 100644
--- a/desktop-shell/shell.c
+++ b/desktop-shell/shell.c
@@ -873,21 +873,21 @@ animate_focus_change(struct desktop_shell *shell, struct workspace *ws,
if (focus_surface_created) {
ws->focus_animation = weston_fade_run(
ws->fsurf_front->view,
- ws->fsurf_front->view->alpha, 0.6, 300,
+ ws->fsurf_front->view->alpha, 0.4, 300,
focus_animation_done, ws);
} else if (from) {
wl_list_insert(&from->layer_link,
&ws->fsurf_back->view->layer_link);
ws->focus_animation = weston_stable_fade_run(
ws->fsurf_front->view, 0.0,
- ws->fsurf_back->view, 0.6,
+ ws->fsurf_back->view, 0.4,
focus_animation_done, ws);
} else if (to) {
wl_list_insert(&ws->layer.view_list,
&ws->fsurf_back->view->layer_link);
ws->focus_animation = weston_stable_fade_run(
ws->fsurf_front->view, 0.0,
- ws->fsurf_back->view, 0.6,
+ ws->fsurf_back->view, 0.4,
focus_animation_done, ws);
}
}