From 7a6df0013b286305ad3e275a015c488ce82a7b20 Mon Sep 17 00:00:00 2001 From: Leonhard Kargl Date: Mon, 23 Sep 2024 13:44:42 +0200 Subject: [PATCH] ManagedClient: Inherit fds --- 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 6d3cf1ab1..d66215911 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);