Skip to content

Commit 4049181

Browse files
danirabbitlenemter
authored andcommitted
WindowSwitcher: adjust opacity and blur values (#2332)
1 parent 6dbdcea commit 4049181

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Widgets/WindowSwitcher/WindowSwitcher.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget, RootTarget {
104104
add_effect (shadow_effect);
105105

106106

107-
blur_effect = new BackgroundBlurEffect (12, 9, scaling_factor);
107+
blur_effect = new BackgroundBlurEffect (40, 9, scaling_factor);
108108
add_effect (blur_effect);
109109

110110
scale ();
@@ -172,7 +172,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget, RootTarget {
172172
highlight_color = Drawing.Color.DARK_HIGHLIGHT;
173173
}
174174

175-
background_color.alpha = 0.3;
175+
background_color.alpha = 0.6;
176176

177177
#if HAS_MUTTER47
178178
caption.color = Cogl.Color.from_string (caption_color);
@@ -226,7 +226,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget, RootTarget {
226226
highlight_color.red,
227227
highlight_color.green,
228228
highlight_color.blue,
229-
highlight_color.alpha
229+
0.3
230230
);
231231
ctx.stroke ();
232232
ctx.restore ();

0 commit comments

Comments
 (0)