We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad96ab1 commit 79e93b1Copy full SHA for 79e93b1
1 file changed
src/compositor/meta-surface-actor-x11.c
@@ -254,6 +254,9 @@ meta_surface_actor_x11_is_opaque (MetaSurfaceActor *actor)
254
gboolean
255
meta_surface_actor_x11_should_unredirect (MetaSurfaceActorX11 *self)
256
{
257
+ if (!meta_prefs_get_unredirect_fullscreen_windows ())
258
+ return FALSE;
259
+
260
MetaWindow *window = self->window;
261
262
if (meta_window_requested_dont_bypass_compositor (window))
@@ -277,7 +280,7 @@ meta_surface_actor_x11_should_unredirect (MetaSurfaceActorX11 *self)
277
280
if (meta_window_is_override_redirect (window))
278
281
return TRUE;
279
282
- if (self->does_full_damage && meta_prefs_get_unredirect_fullscreen_windows ())
283
+ if (self->does_full_damage)
284
285
286
return FALSE;
0 commit comments