From 31ca0681469d41129b6aa55a9022f734af448140 Mon Sep 17 00:00:00 2001 From: Leonhard <106322251+leolost2605@users.noreply.github.com> Date: Mon, 23 Sep 2024 14:33:49 +0200 Subject: [PATCH] ManagedClient: Inherit fds (#2069) --- src/ShellClients/ManagedClient.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShellClients/ManagedClient.vala b/src/ShellClients/ManagedClient.vala index 6d3cf1ab..d6621591 100644 --- a/src/ShellClients/ManagedClient.vala +++ b/src/ShellClients/ManagedClient.vala @@ -48,7 +48,7 @@ public class Gala.ManagedClient : Object { } private async void start_wayland () { - var subprocess_launcher = new GLib.SubprocessLauncher (STDERR_PIPE | STDOUT_PIPE); + var subprocess_launcher = new GLib.SubprocessLauncher (INHERIT_FDS); try { #if HAS_MUTTER44 wayland_client = new Meta.WaylandClient (display.get_context (), subprocess_launcher);