Skip to content

Commit a686740

Browse files
danirabbitlenemter
authored andcommitted
WindowSwitcher: adjust opacity and blur values (#2332)
1 parent 347b293 commit a686740

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 {
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 {
172172
highlight_color = Drawing.Color.DARK_HIGHLIGHT;
173173
}
174174

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

177177
var stroke_width = scaling_factor;
178178

@@ -229,7 +229,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget {
229229
highlight_color.red,
230230
highlight_color.green,
231231
highlight_color.blue,
232-
highlight_color.alpha
232+
0.3
233233
);
234234
ctx.stroke ();
235235
ctx.restore ();

0 commit comments

Comments
 (0)