File tree 1 file changed +5
-12
lines changed
1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -38,9 +38,11 @@ var OverviewBlur = class OverviewBlur {
38
38
Main . overview ,
39
39
'showing' ,
40
40
_ => {
41
- if ( GLib . getenv ( 'XDG_SESSION_TYPE' ) == "wayland" &&
42
- Main . layoutManager . monitors . length > 1 ) {
43
- this . toogle_actors_visibility ( ) ;
41
+ if (
42
+ GLib . getenv ( 'XDG_SESSION_TYPE' ) == "wayland" &&
43
+ Main . layoutManager . monitors . length > 1
44
+ ) {
45
+ this . update_backgrounds ( ) ;
44
46
}
45
47
}
46
48
) ;
@@ -211,15 +213,6 @@ var OverviewBlur = class OverviewBlur {
211
213
break ;
212
214
}
213
215
}
214
-
215
- toogle_actors_visibility ( ) {
216
- Main . layoutManager . overviewGroup . get_children ( ) . forEach ( child => {
217
- if ( child . constructor . name === 'Meta_BackgroundActor' ) {
218
- child . hide ( ) ;
219
- setTimeout ( _ => child . show ( ) , 10 ) ;
220
- }
221
- } ) ;
222
- }
223
216
224
217
set_sigma ( s ) {
225
218
this . effects . forEach ( effect => {
You can’t perform that action at this time.
0 commit comments