Skip to content

Commit f942cd9

Browse files
danirabbitlenemter
authored andcommitted
WindowSwitcher: adjust opacity and blur values (#2332)
1 parent 3dcbfa5 commit f942cd9

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
@@ -107,7 +107,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget {
107107
add_effect (shadow_effect);
108108

109109

110-
blur_effect = new BackgroundBlurEffect (12, 9, scaling_factor);
110+
blur_effect = new BackgroundBlurEffect (40, 9, scaling_factor);
111111
add_effect (blur_effect);
112112

113113
scale ();
@@ -175,7 +175,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget {
175175
highlight_color = Drawing.Color.DARK_HIGHLIGHT;
176176
}
177177

178-
background_color.alpha = 0.3;
178+
background_color.alpha = 0.6;
179179

180180
var stroke_width = scaling_factor;
181181

@@ -232,7 +232,7 @@ public class Gala.WindowSwitcher : CanvasActor, GestureTarget {
232232
highlight_color.red,
233233
highlight_color.green,
234234
highlight_color.blue,
235-
highlight_color.alpha
235+
0.3
236236
);
237237
ctx.stroke ();
238238
ctx.restore ();

0 commit comments

Comments
 (0)